| 1234567891011121314 |
- 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;
- }
- };
- }
|