ohctechv3/.svn/pristine/01/01512b16931316dc87e670d11c3b3d7c354366a9.svn-base
2024-10-28 15:03:36 +05:30

13 lines
296 B
Plaintext

/**
* 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;