├── .all-contributorsrc ├── .editorconfig ├── .eslintrc.js ├── .github ├── BUG_REPORT.md ├── CONTRIBUTING.md ├── FEATURE_REQUEST.md ├── FUNDING.yml └── QUESTION.md ├── .gitignore ├── .npmrc ├── .nvmrc ├── .travis.yml ├── AUTHORS ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Makefile ├── README.md ├── codecov.yml ├── docs ├── android.png ├── blackberry.png ├── index.html └── iphone.png ├── nwb.config.js ├── package.json ├── renovate.json ├── src ├── index.js └── types │ └── index.d.ts └── tests ├── .eslintrc └── index-test.js /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/.github/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/.github/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/QUESTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/.github/QUESTION.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/AUTHORS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | codecov: 2 | token: 8be73b98-657b-4d8c-9ad8-4e6080d1aeb4 -------------------------------------------------------------------------------- /docs/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/docs/android.png -------------------------------------------------------------------------------- /docs/blackberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/docs/blackberry.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/docs/iphone.png -------------------------------------------------------------------------------- /nwb.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/nwb.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/renovate.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/src/index.js -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/src/types/index.d.ts -------------------------------------------------------------------------------- /tests/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/tests/.eslintrc -------------------------------------------------------------------------------- /tests/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhudson/current-device/HEAD/tests/index-test.js --------------------------------------------------------------------------------