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

node_modules.lodash._baseIsNaN.js Maven / Gradle / Ivy

There is a newer version: 3.3.1
Show newest version
/**
 * The base implementation of `_.isNaN` without support for number objects.
 *
 * @private
 * @param {*} value The value to check.
 * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`.
 */
function baseIsNaN(value) {
  return value !== value;
}

module.exports = baseIsNaN;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy