Skip to content

Commit cd99027

Browse files
authored
style: re-enable lint rule
Signed-off-by: Athan <[email protected]>
1 parent ec4c458 commit cd99027

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/assert/has-bigint-support/lib

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/assert/has-bigint-support/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ var Global = getGlobal();
4242
function hasBigIntSupport() {
4343
return (
4444
typeof Global.BigInt === 'function' &&
45-
typeof BigInt === 'function' && // eslint-disable-line stdlib/require-globals, stdlib/no-builtin-big-int
45+
typeof BigInt === 'function' && // eslint-disable-line stdlib/require-globals
4646
typeof Global.BigInt( '1' ) === 'bigint' &&
4747
typeof BigInt( '1' ) === 'bigint' // eslint-disable-line stdlib/require-globals, no-undef, stdlib/no-builtin-big-int
4848
);

0 commit comments

Comments
 (0)