Files
labeler/node_modules/es-abstract/helpers/maxSafeInteger.js
David Kale 91fcbb0108 build
2020-09-08 13:25:36 -04: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;