basant307/AI_Governance_Project
048
1'use strict';2 3var $BigInt = typeof BigInt !== 'undefined' && BigInt;4 5/** @type {import('.')} */6module.exports = function hasNativeBigInts() {7 return typeof $BigInt === 'function'8 && typeof BigInt === 'function'9 && typeof $BigInt(42) === 'bigint' // eslint-disable-line no-magic-numbers10 && typeof BigInt(42) === 'bigint'; // eslint-disable-line no-magic-numbers11};12 