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

polyfills.Number.isNaN.raw.js Maven / Gradle / Ivy

The newest version!

// Number.isNaN
Number.isNaN = Number.isNaN || function(value) {
    return typeof value === "number" && isNaN(value);
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy