frontend/.pnpm-store/v3/files/51/93e06e5b05a65ffe924fdccbc727bf026c622ca1df96306cf3ffeda5b7bbea8bb0c52030ec90511c2e71b39ca4738afa56ef04ee5cb562aa0ad665d52afe52

11 lines
347 B
Plaintext

'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
};