Skip to content

Commit

Permalink
fix: resolve lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Nov 20, 2024
1 parent 2e1175a commit 8b4abd9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ bench( pkg+':slice', function benchmark( b ) {

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
out = arr.slice(1,2);
out = arr.slice(1, 2);
if ( out instanceof Float64ArrayFE === false ) {
b.fail( 'should return a TypedArray' );
}
}
b.toc();
if ( out instanceof Float64ArrayFE === false ) {
if ( out instanceof Float64ArrayFE === false ) {
b.fail( 'should return a TypedArray' );
}
b.pass( 'benchmark finished' );
Expand Down

0 comments on commit 8b4abd9

Please sign in to comment.