We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec4c458 commit cd99027Copy full SHA for cd99027
lib/node_modules/@stdlib/assert/has-bigint-support/lib/main.js
@@ -42,7 +42,7 @@ var Global = getGlobal();
42
function hasBigIntSupport() {
43
return (
44
typeof Global.BigInt === 'function' &&
45
- typeof BigInt === 'function' && // eslint-disable-line stdlib/require-globals, stdlib/no-builtin-big-int
+ typeof BigInt === 'function' && // eslint-disable-line stdlib/require-globals
46
typeof Global.BigInt( '1' ) === 'bigint' &&
47
typeof BigInt( '1' ) === 'bigint' // eslint-disable-line stdlib/require-globals, no-undef, stdlib/no-builtin-big-int
48
);
0 commit comments