Files
site/nova-components/NovaLeader/node_modules/has-bigints/index.js
2025-04-21 16:03:20 +02:00

11 lines
321 B
JavaScript
Vendored

'use strict';
var $BigInt = global.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
};