All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.es6-shims.js Maven / Gradle / Ivy

if (!String.prototype.includes) {
    String.prototype.includes = function (search, start) {
        'use strict';
        if (typeof start !== 'number') {
            start = 0;
        }

        if (start + search.length > this.length) {
            return false;
        } else {
            return this.indexOf(search, start) !== -1;
        }
    };
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy