UNPKG
aframe
Version:
latest (1.7.1)
1.7.1
1.7.0
1.6.0
1.5.0
1.4.2
1.4.1
1.4.0
1.3.0
1.2.0
1.1.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.9.2
0.9.1
0.9.0
0.8.2
0.8.1
0.8.0
0.7.1
0.7.0
0.6.1
0.6.0
0.5.0
0.4.1
0.4.0
0.3.2
0.3.1
0.3.0
0.2.0
0.2.0-rc1
0.1.3
0.1.2
0.1.1
0.1.0
0.0.9
0.0.0
A web framework for building virtual reality experiences.
aframe.io
aframevr/aframe
aframe
/
src
/
utils
/
isIOSOlderThan10.js
7 lines
(6 loc)
•
184 B
JavaScript
View Raw
1
2
3
4
5
6
7
/** * Check if device is iOS and older than version 10. */
module
.
exports
=
function
isIOSOlderThan10
(
userAgent
) {
return
/(iphone|ipod|ipad).*os.(7_|8_|9_)/i
.
test
(userAgent); };