├── .gitignore ├── .npmignore ├── .prettierrc ├── .travis.yml ├── LICENSE ├── README.md ├── examples ├── simple.js ├── switch.js └── use-discriminator.ts ├── package.json ├── src └── index.ts ├── test ├── highLevel.js ├── index.js └── logic.js ├── tsconfig.json ├── tslint.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamonOehlman/detect-browser/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamonOehlman/detect-browser/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | singleQuote: true 2 | trailingComma: "all" 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamonOehlman/detect-browser/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamonOehlman/detect-browser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamonOehlman/detect-browser/HEAD/README.md -------------------------------------------------------------------------------- /examples/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamonOehlman/detect-browser/HEAD/examples/simple.js -------------------------------------------------------------------------------- /examples/switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamonOehlman/detect-browser/HEAD/examples/switch.js -------------------------------------------------------------------------------- /examples/use-discriminator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamonOehlman/detect-browser/HEAD/examples/use-discriminator.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamonOehlman/detect-browser/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamonOehlman/detect-browser/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/highLevel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamonOehlman/detect-browser/HEAD/test/highLevel.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamonOehlman/detect-browser/HEAD/test/index.js -------------------------------------------------------------------------------- /test/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamonOehlman/detect-browser/HEAD/test/logic.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamonOehlman/detect-browser/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamonOehlman/detect-browser/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamonOehlman/detect-browser/HEAD/yarn.lock --------------------------------------------------------------------------------