14 lines
350 B
Plaintext
14 lines
350 B
Plaintext
"use strict";
|
|
|
|
var coerceToInteger = require("../integer/coerce");
|
|
|
|
var MAX_SAFE_INTEGER = 9007199254740991, MIN_SAFE_INTEGER = -9007199254740991;
|
|
|
|
module.exports = function (value) {
|
|
value = coerceToInteger(value);
|
|
if (!value) return value;
|
|
if (value > MAX_SAFE_INTEGER) return null;
|
|
if (value < MIN_SAFE_INTEGER) return null;
|
|
return value;
|
|
};
|