diff --git a/lib/node_modules/@stdlib/assert/is-bigint/benchmark/benchmark.js b/lib/node_modules/@stdlib/assert/is-bigint/benchmark/benchmark.js index c0ab2e570a64..13e952c19d78 100644 --- a/lib/node_modules/@stdlib/assert/is-bigint/benchmark/benchmark.js +++ b/lib/node_modules/@stdlib/assert/is-bigint/benchmark/benchmark.js @@ -16,8 +16,6 @@ * limitations under the License. */ -/* global BigInt */ - /* eslint-disable no-new-wrappers, no-empty-function, stdlib/require-globals */ 'use strict'; @@ -27,6 +25,7 @@ var bench = require( '@stdlib/bench' ); var isBoolean = require( '@stdlib/assert/is-boolean' ).isPrimitive; var hasBigInts = require( '@stdlib/assert/has-bigint-support' ); +var BigInt = require( '@stdlib/bigint/ctor' ); var pkg = require( './../package.json' ).name; var isBigInt = require( './../lib' );