UNPKG
kod-temp
Version:
latest (0.0.0)
0.0.0
Workano Communications SDK
kod-temp
/
dist
/
esm
/
lib
/
utils
/
isMobile.js
4 lines
(3 loc)
•
144 B
JavaScript
View Raw
1
2
3
4
/* global navigator */
const
isMobile
= (
) =>
typeof
navigator !==
'undefined'
&& navigator.
product
===
'ReactNative'
;
export
default
isMobile;