frontend/.pnpm-store/v3/files/c7/3caf5c06162363dff265d396b03fccda744554576cb93597018332e5713588d3824fbe783838c860af4da0bfee2023e21621b90921c0abd519273d580e5d3a

13 lines
243 B
Plaintext

"use strict";
var coerceToInteger = require("../integer/coerce");
var abs = Math.abs;
module.exports = function (value) {
value = coerceToInteger(value);
if (!value) return value;
if (abs(value) > 8.64e15) return null;
return value;
};