mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-11-25 17:06:52 +01:00
9 lines
207 B
JavaScript
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;
|