Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
* limitations under the License.
*/

/* global BigInt */

/* eslint-disable no-new-wrappers, no-empty-function, stdlib/require-globals */

'use strict';
Expand All @@ -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' );

Expand Down