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

scripts.node_modules.moment.src.lib.utils.is-array.js Maven / Gradle / Ivy

The newest version!
export default function isArray(input) {
    return (
        input instanceof Array ||
        Object.prototype.toString.call(input) === '[object Array]'
    );
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy