COLLECTED BY
Organization:
Internet Archive
Focused crawls are collections of frequently-updated webcrawl data from narrow (as opposed to broad or wide) web crawls, often focused on a single domain or subdomain.
The Wayback Machine - https://web.archive.org/web/20201220222503/https://github.com/lodash/lodash/blob/master/toFinite.js
Permalink
Cannot retrieve contributors at this time
40 lines (37 sloc)
825 Bytes
import toNumber from './toNumber.js'
/** Used as references for various `Number` constants. */
const INFINITY = 1 / 0
const MAX_INTEGER = 1.7976931348623157e+308
/**
* Converts `value` to a finite number.
*
* @since 4.12.0
* @category Lang
* @param {* } value The value to convert.
* @returns {number } Returns the converted number.
* @example
*
* toFinite(3.2)
* // => 3.2
*
* toFinite(Number.MIN_VALUE)
* // => 5e-324
*
* toFinite(Infinity)
* // => 1.7976931348623157e+308
*
* toFinite('3.2')
* // => 3.2
*/
function toFinite ( value ) {
if ( !value ) {
return value === 0 ? value : 0
}
value = toNumber ( value )
if ( value === INFINITY || value === - INFINITY ) {
const sign = ( value < 0 ? - 1 : 1 )
return sign * MAX_INTEGER
}
return value === value ? value : 0
}
export default toFinite
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.