├── .eslintrc ├── .gitignore ├── .nvmrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── browser-detection.js ├── is-android.js ├── is-chrome.js ├── is-edge.js ├── is-ie.js ├── is-ie10.js ├── is-ie11.js ├── is-ie9.js ├── is-ios-firefox.js ├── is-ios-safari.js ├── is-ios-uiwebview.js ├── is-ios-webview.js ├── is-ios-wkwebview.js ├── is-ios.js ├── is-mobile-firefox.js ├── is-samsung.js ├── package.json ├── supports-popups.js └── test ├── .eslintrc ├── browser-detection.js ├── helper.js ├── helpers └── user-agents.js ├── is-android.js ├── is-chrome.js ├── is-edge.js ├── is-ie.js ├── is-ie10.js ├── is-ie11.js ├── is-ie9.js ├── is-ios-firefox.js ├── is-ios-safari.js ├── is-ios-uiwebview.js ├── is-ios-webview.js ├── is-ios-wkwebview.js ├── is-ios.js ├── is-mobile-firefox.js ├── is-samsung.js └── supports-popups.js /.eslintrc: -------------------------------------------------------------------------------- 1 | --- 2 | extends: braintree/client 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/README.md -------------------------------------------------------------------------------- /browser-detection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/browser-detection.js -------------------------------------------------------------------------------- /is-android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/is-android.js -------------------------------------------------------------------------------- /is-chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/is-chrome.js -------------------------------------------------------------------------------- /is-edge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/is-edge.js -------------------------------------------------------------------------------- /is-ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/is-ie.js -------------------------------------------------------------------------------- /is-ie10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/is-ie10.js -------------------------------------------------------------------------------- /is-ie11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/is-ie11.js -------------------------------------------------------------------------------- /is-ie9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/is-ie9.js -------------------------------------------------------------------------------- /is-ios-firefox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/is-ios-firefox.js -------------------------------------------------------------------------------- /is-ios-safari.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/is-ios-safari.js -------------------------------------------------------------------------------- /is-ios-uiwebview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/is-ios-uiwebview.js -------------------------------------------------------------------------------- /is-ios-webview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/is-ios-webview.js -------------------------------------------------------------------------------- /is-ios-wkwebview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/is-ios-wkwebview.js -------------------------------------------------------------------------------- /is-ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/is-ios.js -------------------------------------------------------------------------------- /is-mobile-firefox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/is-mobile-firefox.js -------------------------------------------------------------------------------- /is-samsung.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/is-samsung.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/package.json -------------------------------------------------------------------------------- /supports-popups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/supports-popups.js -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/browser-detection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/test/browser-detection.js -------------------------------------------------------------------------------- /test/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/test/helper.js -------------------------------------------------------------------------------- /test/helpers/user-agents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/test/helpers/user-agents.js -------------------------------------------------------------------------------- /test/is-android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/test/is-android.js -------------------------------------------------------------------------------- /test/is-chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/test/is-chrome.js -------------------------------------------------------------------------------- /test/is-edge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/test/is-edge.js -------------------------------------------------------------------------------- /test/is-ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/test/is-ie.js -------------------------------------------------------------------------------- /test/is-ie10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/test/is-ie10.js -------------------------------------------------------------------------------- /test/is-ie11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/test/is-ie11.js -------------------------------------------------------------------------------- /test/is-ie9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/test/is-ie9.js -------------------------------------------------------------------------------- /test/is-ios-firefox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/test/is-ios-firefox.js -------------------------------------------------------------------------------- /test/is-ios-safari.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/test/is-ios-safari.js -------------------------------------------------------------------------------- /test/is-ios-uiwebview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/test/is-ios-uiwebview.js -------------------------------------------------------------------------------- /test/is-ios-webview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/test/is-ios-webview.js -------------------------------------------------------------------------------- /test/is-ios-wkwebview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/test/is-ios-wkwebview.js -------------------------------------------------------------------------------- /test/is-ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/test/is-ios.js -------------------------------------------------------------------------------- /test/is-mobile-firefox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/test/is-mobile-firefox.js -------------------------------------------------------------------------------- /test/is-samsung.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/test/is-samsung.js -------------------------------------------------------------------------------- /test/supports-popups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/browser-detection/HEAD/test/supports-popups.js --------------------------------------------------------------------------------