mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-24 22:39:26 +01:00
9 lines
207 B
JavaScript
Vendored
9 lines
207 B
JavaScript
Vendored
'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;
|