Skip to content

Commit 6adff0f

Browse files
authored
chore: fix JavaScript lint errors
PR-URL: #8221 Closes: #8208 Reviewed-by: Philipp Burckhardt <[email protected]>
1 parent 53ffc05 commit 6adff0f

File tree

1 file changed

+1
-2
lines changed
  • lib/node_modules/@stdlib/assert/is-bigint/benchmark

1 file changed

+1
-2
lines changed

lib/node_modules/@stdlib/assert/is-bigint/benchmark/benchmark.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* global BigInt */
20-
2119
/* eslint-disable no-new-wrappers, no-empty-function, stdlib/require-globals */
2220

2321
'use strict';
@@ -27,6 +25,7 @@
2725
var bench = require( '@stdlib/bench' );
2826
var isBoolean = require( '@stdlib/assert/is-boolean' ).isPrimitive;
2927
var hasBigInts = require( '@stdlib/assert/has-bigint-support' );
28+
var BigInt = require( '@stdlib/bigint/ctor' );
3029
var pkg = require( './../package.json' ).name;
3130
var isBigInt = require( './../lib' );
3231

0 commit comments

Comments
 (0)