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
/
vendor
/
starts-with-polyfill.js
8 lines
(7 loc)
•
257 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
// https://stackoverflow.com/a/36213464
if
(!
String
.
prototype
.
startsWith
) {
String
.
prototype
.
startsWith
=
function
(
searchString, position
){ position = position ||
0
;
return
this
.
substr
(position, searchString.
length
) === searchString; }; }