virtpool/node_modules/@yaireo/tagify/src/polyfills/String.includes.js

12 lines
290 B
JavaScript

if( !String.prototype.includes ){
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;
};
}