diff --git a/lib/node_modules/@stdlib/math/strided/special/besselj1-by/test/test.main.js b/lib/node_modules/@stdlib/math/strided/special/besselj1-by/test/test.main.js index 8607bbb9c32f..d4c1eacafaf4 100644 --- a/lib/node_modules/@stdlib/math/strided/special/besselj1-by/test/test.main.js +++ b/lib/node_modules/@stdlib/math/strided/special/besselj1-by/test/test.main.js @@ -74,6 +74,7 @@ tape( 'the function computes the Bessel function of the first kind of order one besselj1By( x.length, x, 1, y, 1, accessor ); t.deepEqual( y, expected, 'deep equal' ); + // eslint-disable-next-line stdlib/no-new-array x = new Array( 5 ); // sparse array y = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; @@ -82,6 +83,7 @@ tape( 'the function computes the Bessel function of the first kind of order one besselj1By( x.length, x, 1, y, 1, accessor ); t.deepEqual( y, expected, 'deep equal' ); + // eslint-disable-next-line stdlib/no-new-array x = new Array( 5 ); // sparse array x[ 2 ] = rand(); y = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; diff --git a/lib/node_modules/@stdlib/strided/common/examples/addon-napi-polymorphic/index.js b/lib/node_modules/@stdlib/strided/common/examples/addon-napi-polymorphic/index.js index ff6a86a85ddb..d6d5cd72dae6 100644 --- a/lib/node_modules/@stdlib/strided/common/examples/addon-napi-polymorphic/index.js +++ b/lib/node_modules/@stdlib/strided/common/examples/addon-napi-polymorphic/index.js @@ -21,7 +21,7 @@ var join = require( 'path' ).join; var tryRequire = require( '@stdlib/utils/try-require' ); var Float64Array = require( '@stdlib/array/float64' ); -var Float32Array = require( '@stdlib/array/float32' ); +var Float32Array = require( '@stdlib/array/float32' ); // eslint-disable-line stdlib/require-last-path-relative // Try loading the add-on: var add = tryRequire( join( __dirname, 'addon.node' ) );