Skip to content

Commit 266a064

Browse files
committed
style: fix spacing
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: passed - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 04f7752 commit 266a064

16 files changed

+32
-32
lines changed

lib/node_modules/@stdlib/ndarray/base/fill/benchmark/benchmark.10d_columnmajor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ function createBenchmark( len, shape, xtype ) {
7474
b.tic();
7575
for ( i = 0; i < b.iterations; i++ ) {
7676
fill( x, i );
77-
if ( isnan( x.data[ i%len ]) ) {
77+
if ( isnan( x.data[ i%len ] ) ) {
7878
b.fail( 'should not return NaN' );
7979
}
8080
}
8181
b.toc();
82-
if ( isnan( x.data[ i%len ]) ) {
82+
if ( isnan( x.data[ i%len ] ) ) {
8383
b.fail( 'should not return NaN' );
8484
}
8585
b.pass( 'benchmark finished' );

lib/node_modules/@stdlib/ndarray/base/fill/benchmark/benchmark.10d_rowmajor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ function createBenchmark( len, shape, xtype ) {
7474
b.tic();
7575
for ( i = 0; i < b.iterations; i++ ) {
7676
fill( x, i );
77-
if ( isnan( x.data[ i%len ]) ) {
77+
if ( isnan( x.data[ i%len ] ) ) {
7878
b.fail( 'should not return NaN' );
7979
}
8080
}
8181
b.toc();
82-
if ( isnan( x.data[ i%len ]) ) {
82+
if ( isnan( x.data[ i%len ] ) ) {
8383
b.fail( 'should not return NaN' );
8484
}
8585
b.pass( 'benchmark finished' );

lib/node_modules/@stdlib/ndarray/base/fill/benchmark/benchmark.3d_colummajor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,12 @@ function createBenchmark( len, shape, xtype ) {
7575
b.tic();
7676
for ( i = 0; i < b.iterations; i++ ) {
7777
fill( x, i );
78-
if ( isnan( x.data[ i%len ]) ) {
78+
if ( isnan( x.data[ i%len ] ) ) {
7979
b.fail( 'should not return NaN' );
8080
}
8181
}
8282
b.toc();
83-
if ( isnan( x.data[ i%len ]) ) {
83+
if ( isnan( x.data[ i%len ] ) ) {
8484
b.fail( 'should not return NaN' );
8585
}
8686
b.pass( 'benchmark finished' );

lib/node_modules/@stdlib/ndarray/base/fill/benchmark/benchmark.3d_rowmajor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,12 @@ function createBenchmark( len, shape, xtype ) {
7575
b.tic();
7676
for ( i = 0; i < b.iterations; i++ ) {
7777
fill( x, i );
78-
if ( isnan( x.data[ i%len ]) ) {
78+
if ( isnan( x.data[ i%len ] ) ) {
7979
b.fail( 'should not return NaN' );
8080
}
8181
}
8282
b.toc();
83-
if ( isnan( x.data[ i%len ]) ) {
83+
if ( isnan( x.data[ i%len ] ) ) {
8484
b.fail( 'should not return NaN' );
8585
}
8686
b.pass( 'benchmark finished' );

lib/node_modules/@stdlib/ndarray/base/fill/benchmark/benchmark.4d_columnmajor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ function createBenchmark( len, shape, xtype ) {
7474
b.tic();
7575
for ( i = 0; i < b.iterations; i++ ) {
7676
fill( x, i );
77-
if ( isnan( x.data[ i%len ]) ) {
77+
if ( isnan( x.data[ i%len ] ) ) {
7878
b.fail( 'should not return NaN' );
7979
}
8080
}
8181
b.toc();
82-
if ( isnan( x.data[ i%len ]) ) {
82+
if ( isnan( x.data[ i%len ] ) ) {
8383
b.fail( 'should not return NaN' );
8484
}
8585
b.pass( 'benchmark finished' );

lib/node_modules/@stdlib/ndarray/base/fill/benchmark/benchmark.4d_rowmajor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ function createBenchmark( len, shape, xtype ) {
7474
b.tic();
7575
for ( i = 0; i < b.iterations; i++ ) {
7676
fill( x, i );
77-
if ( isnan( x.data[ i%len ]) ) {
77+
if ( isnan( x.data[ i%len ] ) ) {
7878
b.fail( 'should not return NaN' );
7979
}
8080
}
8181
b.toc();
82-
if ( isnan( x.data[ i%len ]) ) {
82+
if ( isnan( x.data[ i%len ] ) ) {
8383
b.fail( 'should not return NaN' );
8484
}
8585
b.pass( 'benchmark finished' );

lib/node_modules/@stdlib/ndarray/base/fill/benchmark/benchmark.5d_columnmajor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ function createBenchmark( len, shape, xtype ) {
7474
b.tic();
7575
for ( i = 0; i < b.iterations; i++ ) {
7676
fill( x, i );
77-
if ( isnan( x.data[ i%len ]) ) {
77+
if ( isnan( x.data[ i%len ] ) ) {
7878
b.fail( 'should not return NaN' );
7979
}
8080
}
8181
b.toc();
82-
if ( isnan( x.data[ i%len ]) ) {
82+
if ( isnan( x.data[ i%len ] ) ) {
8383
b.fail( 'should not return NaN' );
8484
}
8585
b.pass( 'benchmark finished' );

lib/node_modules/@stdlib/ndarray/base/fill/benchmark/benchmark.5d_rowmajor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ function createBenchmark( len, shape, xtype ) {
7474
b.tic();
7575
for ( i = 0; i < b.iterations; i++ ) {
7676
fill( x, i );
77-
if ( isnan( x.data[ i%len ]) ) {
77+
if ( isnan( x.data[ i%len ] ) ) {
7878
b.fail( 'should not return NaN' );
7979
}
8080
}
8181
b.toc();
82-
if ( isnan( x.data[ i%len ]) ) {
82+
if ( isnan( x.data[ i%len ] ) ) {
8383
b.fail( 'should not return NaN' );
8484
}
8585
b.pass( 'benchmark finished' );

lib/node_modules/@stdlib/ndarray/base/fill/benchmark/benchmark.6d_columnmajor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ function createBenchmark( len, shape, xtype ) {
7474
b.tic();
7575
for ( i = 0; i < b.iterations; i++ ) {
7676
fill( x, i );
77-
if ( isnan( x.data[ i%len ]) ) {
77+
if ( isnan( x.data[ i%len ] ) ) {
7878
b.fail( 'should not return NaN' );
7979
}
8080
}
8181
b.toc();
82-
if ( isnan( x.data[ i%len ]) ) {
82+
if ( isnan( x.data[ i%len ] ) ) {
8383
b.fail( 'should not return NaN' );
8484
}
8585
b.pass( 'benchmark finished' );

lib/node_modules/@stdlib/ndarray/base/fill/benchmark/benchmark.6d_rowmajor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ function createBenchmark( len, shape, xtype ) {
7474
b.tic();
7575
for ( i = 0; i < b.iterations; i++ ) {
7676
fill( x, i );
77-
if ( isnan( x.data[ i%len ]) ) {
77+
if ( isnan( x.data[ i%len ] ) ) {
7878
b.fail( 'should not return NaN' );
7979
}
8080
}
8181
b.toc();
82-
if ( isnan( x.data[ i%len ]) ) {
82+
if ( isnan( x.data[ i%len ] ) ) {
8383
b.fail( 'should not return NaN' );
8484
}
8585
b.pass( 'benchmark finished' );

0 commit comments

Comments
 (0)