UNPKG
mdn-polyfills
Version:
canary (5.20.1-canary)
latest (5.20.0)
5.20.1-canary
5.20.0
5.19.0
5.18.0
5.17.1
5.17.0
5.16.3
5.16.2
5.16.1
5.16.0
5.15.1
5.15.0
5.14.0
5.13.0
5.12.0
5.11.0
5.10.1
5.10.0
5.9.0
5.8.0
5.7.0
5.6.0
5.5.0
5.4.0
5.3.0
5.2.0
5.1.0
5.0.0
4.0.0
3.6.0
3.5.0
3.4.0
3.3.0
3.2.0
3.1.0
3.0.0
2.2.0
2.1.2
2.1.1
2.1.0
2.0.0
1.0.0
MDN polyfills
github.com/msn0/mdn-polyfills
msn0/mdn-polyfills
mdn-polyfills
/
String.prototype.includes.js
2 lines
(1 loc)
•
153 B
JavaScript
View Raw
1
2
String
.
prototype
.
includes
||(
String
.
prototype
.
includes
=
function
(
t,n
){
return
"number"
!=
typeof
n&&(n=
0
),!(n+t.
length
>
this
.
length
)&&-
1
!==
this
.
indexOf
(t,n)});