* Checks if `value` is `NaN`. * * Note: This is not the same as native `isNaN` which will return `true` for * `undefined` and other non-numeric values. See http://es5.github.io/#x15.1.2.4. * * @static * @memberOf _ * @category Objects * @param {*} value The va
(value)
| 37579 | * // => false |
| 37580 | */ |
| 37581 | function isNaN(value) { |
| 37582 | // `NaN` as a primitive is the only value that is not equal to itself |
| 37583 | // (perform the [[Class]] check first to avoid errors with some host objects in IE) |
| 37584 | return isNumber(value) && value != +value; |
| 37585 | } |
| 37586 | |
| 37587 | /** |
| 37588 | * Checks if `value` is `null`. |
no test coverage detected