UNPKG
@thiagopnts/kaleidoscope
Version:
latest (0.0.1)
0.0.1
360º video/image viewer
github.com/thiagopnts/kaleidoscope
thiagopnts/kaleidoscope
@thiagopnts/kaleidoscope
/
src
/
utils.js
12 lines
(11 loc)
•
249 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
default
{
isiOS
(
) {
return
/(ipad|iphone|ipod)/ig
.
test
(navigator.
userAgent
); },
isiPhone
(
) {
return
/iphone.*(7|8|9)_[0-9]/i
.
test
(navigator.
userAgent
); },
isIE
(
) {
return
/Trident|Edge/i
.
test
(navigator.
userAgent
); } }