Files
red_de_investigacion_front/node_modules/es-abstract/helpers/maxSafeInteger.js
T
DanielRamirezGe 5eecfbf6cd first commit
2020-01-14 20:43:08 -06: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;