blob: dd9af1df51f009d46d3707ba8d85a07bf2897f85 [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001'use strict';
2
3var $BigInt = global.BigInt;
4
5module.exports = function hasNativeBigInts() {
6 return typeof $BigInt === 'function'
7 && typeof BigInt === 'function'
8 && typeof $BigInt(42) === 'bigint' // eslint-disable-line no-magic-numbers
9 && typeof BigInt(42) === 'bigint'; // eslint-disable-line no-magic-numbers
10};