MCPcopy
hub / github.com/deployd/deployd / isFinite

Function isFinite

test-app/public/sinon.js:22252–22254  ·  view source on GitHub ↗

* Checks if `value` is a finite primitive number. * * **Note:** This method is based on * [`Number.isFinite`](https://mdn.io/Number/isFinite). * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value

(value)

Source from the content-addressed store, hash-verified

22250 * // => false
22251 */
22252 function isFinite(value) {
22253 return typeof value == 'number' && nativeIsFinite(value);
22254 }
22255
22256 /**
22257 * Checks if `value` is classified as a `Function` object.

Callers 4

jquery.jsFile · 0.85
chai.jsFile · 0.85
mocha.jsFile · 0.85
isNumberFiniteFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected