| Leo Repp | 58b9f11 | 2021-11-22 11:57:47 +0100 | [diff] [blame^] | 1 | 'use strict'; |
| 2 | |||||
| 3 | var $BigInt = global.BigInt; | ||||
| 4 | |||||
| 5 | module.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 | }; | ||||