Urara-Blog/node_modules/.pnpm-store/v3/files/51/93e06e5b05a65ffe924fdccbc727bf026c622ca1df96306cf3ffeda5b7bbea8bb0c52030ec90511c2e71b39ca4738afa56ef04ee5cb562aa0ad665d52afe52
2022-08-14 01:14:53 +08:00

10 lines
347 B
Text

'use strict';
var $BigInt = typeof BigInt !== 'undefined' && BigInt;
module.exports = function hasNativeBigInts() {
return typeof $BigInt === 'function'
&& typeof BigInt === 'function'
&& typeof $BigInt(42) === 'bigint' // eslint-disable-line no-magic-numbers
&& typeof BigInt(42) === 'bigint'; // eslint-disable-line no-magic-numbers
};