MCPcopy
hub / github.com/stemkoski/stemkoski.github.com / isFinite

Function isFinite

MathBox/mathbox-bundle.js:37507–37509  ·  view source on GitHub ↗

* Checks if `value` is, or can be coerced to, a finite number. * * Note: This is not the same as native `isFinite` which will return true for * booleans and empty strings. See http://es5.github.io/#x15.1.2.5. * * @static * @memberOf _ * @category Objects * @pa

(value)

Source from the content-addressed store, hash-verified

37505 * // => false
37506 */
37507 function isFinite(value) {
37508 return nativeIsFinite(value) && !nativeIsNaN(parseFloat(value));
37509 }
37510
37511 /**
37512 * Checks if `value` is a function.

Callers 5

mathbox-core.jsFile · 0.85
mathbox-bundle.jsFile · 0.85
Tween.jsFile · 0.85
jquery-1.9.1.jsFile · 0.85
leap.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected