UNPKG
@yg012n0132n0n3w0n/simplepage
Version:
latest (1.0.1)
1.0.1
1.0.0
@yg012n0132n0n3w0n/simplepage
/
utils
/
env.js
9 lines
(7 loc)
•
252 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
// Browser environment sniffing
export
const
inBrowser =
typeof
window
!==
'undefined'
&&
Object
.
prototype
.
toString
.
call
(
window
) !==
'[object Object]'
export
const
isIE9 = inBrowser && navigator.
userAgent
.
toLowerCase
().
indexOf
(
'msie 9.0'
) >
0