DIR: /proc/1784574/root/usr/share/nodejs/lodash/ |
Current File : //proc/1784574/root/usr/share/nodejs/lodash/_baseIsNaN.js |
/** Detect free variable `globalThis` */ const freeGlobalThis = typeof globalThis == 'object' && globalThis !== null && globalThis.Object == Object && globalThis; /** * 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; |