mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 17:59:55 +02:00
14 lines
341 B
JavaScript
14 lines
341 B
JavaScript
if (!String.prototype.includes) {
|
|
// eslint-disable-next-line no-extend-native
|
|
String.prototype.includes = function (search, start) {
|
|
if (typeof start !== "number") {
|
|
start = 0;
|
|
}
|
|
|
|
if (start + search.length > this.length) {
|
|
return false;
|
|
} else {
|
|
return this.indexOf(search, start) !== -1;
|
|
}
|
|
};
|
|
}
|