Skip to content
Closed
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 @@ -25,6 +25,7 @@
var dtypes = require( '@stdlib/array/dtypes' );
var pkg = require( './../package.json' ).name;
var isSafeCast = require( './../lib' );
var format = require( '@stdlib/string/format' );

Check failure on line 28 in lib/node_modules/@stdlib/array/base/assert/is-safe-data-type-cast/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

`require( '@stdlib/string/format' )` should come before `require( './../package.json' )`


// VARIABLES //
Expand All @@ -34,7 +35,7 @@

// MAIN //

bench( pkg, function benchmark( b ) {
bench( format( '%s::is_safe_data_type_cast', pkg), function benchmark( b ) {
var out;
var N;
var i;
Expand Down
Loading