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

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

There is a newer version: 2.14
Show newest version
export default function isDate(input) {
    return (
        input instanceof Date ||
        Object.prototype.toString.call(input) === '[object Date]'
    );
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy