Created
February 13, 2020 12:10
-
-
Save bitfishxyz/98d219e2fbdb793a9e70f339cd726322 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const inBrowser = typeof window !== 'undefined' | |
// get user agent | |
const UA = inBrowser && window.navigator.userAgent.toLowerCase() | |
// detect browser | |
const isIE = UA && /msie|trident/.test(UA) | |
const isIE9 = UA && UA.indexOf('msie 9.0') > 0 | |
const isEdge = UA && UA.indexOf('edge/') > 0 | |
const isChrome = UA && /chrome\/\d+/.test(UA) && !isEdge | |
const isPhantomJS = UA && /phantomjs/.test(UA) | |
const isFF = UA && UA.match(/firefox\/(\d+)/) | |
// detect OS | |
const isAndroid = UA && UA.indexOf('android') > 0 | |
const isIOS = UA && /iphone|ipad|ipod|ios/.test(UA) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment