You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

coerce.js 243B

123456789101112
  1. "use strict";
  2. var coerceToInteger = require("../integer/coerce");
  3. var abs = Math.abs;
  4. module.exports = function (value) {
  5. value = coerceToInteger(value);
  6. if (!value) return value;
  7. if (abs(value) > 8.64e15) return null;
  8. return value;
  9. };