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

scripts.node_modules.moment.src.lib.utils.index-of.js Maven / Gradle / Ivy

There is a newer version: 2.14
Show newest version
var indexOf;

if (Array.prototype.indexOf) {
    indexOf = Array.prototype.indexOf;
} else {
    indexOf = function (o) {
        // I know
        var i;
        for (i = 0; i < this.length; ++i) {
            if (this[i] === o) {
                return i;
            }
        }
        return -1;
    };
}

export { indexOf as default };




© 2015 - 2025 Weber Informatics LLC | Privacy Policy