mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
9 lines
205 B
JavaScript
9 lines
205 B
JavaScript
'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;
|