forked from lodash/lodash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoSafeInteger.js
42 lines (39 loc) · 866 Bytes
/
toSafeInteger.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import toInteger from './toInteger.js'
/** Used as references for various `Number` constants. */
const MAX_SAFE_INTEGER = 9007199254740991
/**
* Converts `value` to a safe integer. A safe integer can be compared and
* represented correctly.
*
* @since 4.0.0
* @category Lang
* @param {*} value The value to convert.
* @returns {number} Returns the converted integer.
* @example
*
* toSafeInteger(3.2)
* // => 3
*
* toSafeInteger(Number.MIN_VALUE)
* // => 0
*
* toSafeInteger(Infinity)
* // => 9007199254740991
*
* toSafeInteger('3.2')
* // => 3
*/
function toSafeInteger(value) {
if (!value) {
return value === 0 ? value : 0
}
value = toInteger(value)
if (value < -MAX_SAFE_INTEGER) {
return -MAX_SAFE_INTEGER
}
if (value > MAX_SAFE_INTEGER) {
return MAX_SAFE_INTEGER
}
return value
}
export default toSafeInteger