CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
index.js12 linesDownload Raw Back to has-bigints
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 
basant307/AI_Governance_Project · CoolFace