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

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

The newest version!
export default function isNumber(input) {
    return (
        typeof input === 'number' ||
        Object.prototype.toString.call(input) === '[object Number]'
    );
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy