github-pages-deploy-action/node_modules/es-abstract/helpers/maxSafeInteger.js
2020-01-28 00:08:03 -05:00

9 lines
207 B
JavaScript

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