UNPKG
hy_gx
Version:
latest (1.0.2)
1.0.2
hy_gx
/
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