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.

maxSafeInteger.js 207B

12345678
  1. 'use strict';
  2. var GetIntrinsic = require('../GetIntrinsic');
  3. var $Math = GetIntrinsic('%Math%');
  4. var $Number = GetIntrinsic('%Number%');
  5. module.exports = $Number.MAX_SAFE_INTEGER || $Math.pow(2, 53) - 1;