MCPcopy
hub / github.com/stemkoski/stemkoski.github.com / isNaN

Function isNaN

MathBox/mathbox-bundle.js:37581–37585  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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`.

Callers 13

_hexWriteFunction · 0.85
mathbox-core.jsFile · 0.85
howMuchToReadFunction · 0.85
mathbox-bundle.jsFile · 0.85
_hexWriteFunction · 0.85
howMuchToReadFunction · 0.85
jquery-1.9.1.jsFile · 0.85
leap.jsFile · 0.85
jquery-ui.jsFile · 0.85
isNumberFunction · 0.85
clampFunction · 0.85
styleDifferenceFunction · 0.85

Calls 1

isNumberFunction · 0.70

Tested by

no test coverage detected