Sha256: 33a14ef8c6ed3714ad1ba730db55b1cc57533659ae7ba0d1e170b201a070c865
Contents?: true
Size: 347 Bytes
Versions: 50
Compression:
Stored size: 347 Bytes
Contents
'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 };
Version data entries
50 entries across 50 versions & 2 rubygems