projecte_ionic/node_modules/es-abstract/helpers/maxSafeInteger.js
2022-02-09 18:30:03 +01:00

8 lines
205 B
JavaScript
Executable file

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