UNPKG
jshow-device-detect
Version:
latest (1.0.6)
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
jshow detect device
github.com/j-show/device-detect
j-show/device-detect
jshow-device-detect
/
lib-es
/
utils
/
brower.js
9 lines
•
233 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
export
const
getNavigator
= (
) => {
if
(
typeof
window
===
'undefined'
)
return
false
;
const
nav =
window
.
navigator
|| navigator;
if
(!nav)
return
false
;
return
nav; };
//# sourceMappingURL=brower.js.map