├── .editorconfig ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── __tests__ └── index.js ├── package.json ├── src ├── index.d.ts └── index.js └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaneenige/prefers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaneenige/prefers/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /coverage 2 | /dist 3 | /node_modules 4 | /npm-debug.log 5 | .DS_Store 6 | .idea 7 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaneenige/prefers/HEAD/.npmrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaneenige/prefers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaneenige/prefers/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaneenige/prefers/HEAD/__tests__/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaneenige/prefers/HEAD/package.json -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaneenige/prefers/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaneenige/prefers/HEAD/src/index.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaneenige/prefers/HEAD/tsconfig.json --------------------------------------------------------------------------------