From 0d631c192615f7c1943bdf065234c0c5e7f8b6fd Mon Sep 17 00:00:00 2001 From: Nathanael Mbale <66083904+nathanaelmbale@users.noreply.github.com> Date: Wed, 6 May 2026 00:28:51 -0400 Subject: [PATCH] fix: resolve JavaScript lint errors --- .../@stdlib/assert/is-readable-property/benchmark/benchmark.js | 2 +- lib/node_modules/@stdlib/blas/base/sger/test/test.ndarray.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/assert/is-readable-property/benchmark/benchmark.js b/lib/node_modules/@stdlib/assert/is-readable-property/benchmark/benchmark.js index 66066cd50017..b5e170381a6d 100644 --- a/lib/node_modules/@stdlib/assert/is-readable-property/benchmark/benchmark.js +++ b/lib/node_modules/@stdlib/assert/is-readable-property/benchmark/benchmark.js @@ -33,7 +33,7 @@ bench( pkg, function benchmark( b ) { var arr; var i; - arr = new Array( 100 ); + arr = []; b.tic(); for ( i = 0; i < b.iterations; i++ ) { diff --git a/lib/node_modules/@stdlib/blas/base/sger/test/test.ndarray.js b/lib/node_modules/@stdlib/blas/base/sger/test/test.ndarray.js index 9a1e063efa32..e03016251470 100644 --- a/lib/node_modules/@stdlib/blas/base/sger/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/blas/base/sger/test/test.ndarray.js @@ -44,7 +44,6 @@ var csa1nsa2n = require( './fixtures/column_major_sa1n_sa2n.json' ); var ccap = require( './fixtures/column_major_complex_access_pattern.json' ); var cx0 = require( './fixtures/column_major_x_zeros.json' ); var cy0 = require( './fixtures/column_major_y_zeros.json' ); - var rm = require( './fixtures/row_major.json' ); var roa = require( './fixtures/row_major_oa.json' ); var rox = require( './fixtures/row_major_ox.json' );