
scripts.node_modules.moment.src.lib.utils.index-of.js Maven / Gradle / Ivy
The 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