diff --git a/lib/node_modules/@stdlib/math/strided/ops/add-by/test/test.main.js b/lib/node_modules/@stdlib/math/strided/ops/add-by/test/test.main.js index ef3749816e04..5b9891a79463 100644 --- a/lib/node_modules/@stdlib/math/strided/ops/add-by/test/test.main.js +++ b/lib/node_modules/@stdlib/math/strided/ops/add-by/test/test.main.js @@ -77,7 +77,10 @@ tape( 'the function performs element-wise addition via a callback function', fun addBy( x.length, x, 1, y, 1, z, 1, accessor ); t.deepEqual( z, expected, 'deep equal' ); + // eslint-disable-next-line stdlib/no-new-array x = new Array( 5 ); // sparse array + + // eslint-disable-next-line stdlib/no-new-array y = new Array( 5 ); // sparse array z = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; @@ -86,8 +89,11 @@ tape( 'the function performs element-wise addition via a callback function', fun addBy( x.length, x, 1, y, 1, z, 1, accessor ); t.deepEqual( z, expected, 'deep equal' ); + // eslint-disable-next-line stdlib/no-new-array x = new Array( 5 ); // sparse array x[ 2 ] = rand(); + + // eslint-disable-next-line stdlib/no-new-array y = new Array( 5 ); // sparse array y[ 2 ] = rand(); z = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; diff --git a/lib/node_modules/@stdlib/math/strided/ops/add-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/ops/add-by/test/test.ndarray.js index 97e7dd61eb28..29df0ccc4811 100644 --- a/lib/node_modules/@stdlib/math/strided/ops/add-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/ops/add-by/test/test.ndarray.js @@ -76,7 +76,10 @@ tape( 'the function performs element-wise addition via a callback function', fun addBy( x.length, x, 1, 0, y, 1, 0, z, 1, 0, accessor ); t.deepEqual( z, expected, 'deep equal' ); + // eslint-disable-next-line stdlib/no-new-array x = new Array( 5 ); // sparse array + + // eslint-disable-next-line stdlib/no-new-array y = new Array( 5 ); // sparse array z = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; @@ -85,8 +88,11 @@ tape( 'the function performs element-wise addition via a callback function', fun addBy( x.length, x, 1, 0, y, 1, 0, z, 1, 0, accessor ); t.deepEqual( z, expected, 'deep equal' ); + // eslint-disable-next-line stdlib/no-new-array x = new Array( 5 ); // sparse array x[ 2 ] = rand(); + + // eslint-disable-next-line stdlib/no-new-array y = new Array( 5 ); // sparse array y[ 2 ] = rand(); z = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; diff --git a/lib/node_modules/@stdlib/math/strided/ops/mul-by/test/test.main.js b/lib/node_modules/@stdlib/math/strided/ops/mul-by/test/test.main.js index ae276804bd8a..e96cd4614149 100644 --- a/lib/node_modules/@stdlib/math/strided/ops/mul-by/test/test.main.js +++ b/lib/node_modules/@stdlib/math/strided/ops/mul-by/test/test.main.js @@ -77,7 +77,10 @@ tape( 'the function performs element-wise multiplication via a callback function mulBy( x.length, x, 1, y, 1, z, 1, accessor ); t.deepEqual( z, expected, 'deep equal' ); + // eslint-disable-next-line stdlib/no-new-array x = new Array( 5 ); // sparse array + + // eslint-disable-next-line stdlib/no-new-array y = new Array( 5 ); // sparse array z = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; @@ -86,8 +89,11 @@ tape( 'the function performs element-wise multiplication via a callback function mulBy( x.length, x, 1, y, 1, z, 1, accessor ); t.deepEqual( z, expected, 'deep equal' ); + // eslint-disable-next-line stdlib/no-new-array x = new Array( 5 ); // sparse array x[ 2 ] = rand(); + + // eslint-disable-next-line stdlib/no-new-array y = new Array( 5 ); // sparse array y[ 2 ] = rand(); z = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; diff --git a/lib/node_modules/@stdlib/math/strided/ops/mul-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/ops/mul-by/test/test.ndarray.js index e2600a6bc74e..691c94cfd125 100644 --- a/lib/node_modules/@stdlib/math/strided/ops/mul-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/ops/mul-by/test/test.ndarray.js @@ -76,7 +76,10 @@ tape( 'the function performs element-wise multiplication via a callback function mulBy( x.length, x, 1, 0, y, 1, 0, z, 1, 0, accessor ); t.deepEqual( z, expected, 'deep equal' ); + // eslint-disable-next-line stdlib/no-new-array x = new Array( 5 ); // sparse array + + // eslint-disable-next-line stdlib/no-new-array y = new Array( 5 ); // sparse array z = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; @@ -85,8 +88,11 @@ tape( 'the function performs element-wise multiplication via a callback function mulBy( x.length, x, 1, 0, y, 1, 0, z, 1, 0, accessor ); t.deepEqual( z, expected, 'deep equal' ); + // eslint-disable-next-line stdlib/no-new-array x = new Array( 5 ); // sparse array x[ 2 ] = rand(); + + // eslint-disable-next-line stdlib/no-new-array y = new Array( 5 ); // sparse array y[ 2 ] = rand(); z = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; diff --git a/lib/node_modules/@stdlib/math/strided/ops/sub-by/test/test.main.js b/lib/node_modules/@stdlib/math/strided/ops/sub-by/test/test.main.js index 6abaf12905da..341ecee8a5e3 100644 --- a/lib/node_modules/@stdlib/math/strided/ops/sub-by/test/test.main.js +++ b/lib/node_modules/@stdlib/math/strided/ops/sub-by/test/test.main.js @@ -77,7 +77,10 @@ tape( 'the function performs element-wise subtraction via a callback function', subBy( x.length, x, 1, y, 1, z, 1, accessor ); t.deepEqual( z, expected, 'deep equal' ); + // eslint-disable-next-line stdlib/no-new-array x = new Array( 5 ); // sparse array + + // eslint-disable-next-line stdlib/no-new-array y = new Array( 5 ); // sparse array z = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; @@ -86,8 +89,11 @@ tape( 'the function performs element-wise subtraction via a callback function', subBy( x.length, x, 1, y, 1, z, 1, accessor ); t.deepEqual( z, expected, 'deep equal' ); + // eslint-disable-next-line stdlib/no-new-array x = new Array( 5 ); // sparse array x[ 2 ] = rand(); + + // eslint-disable-next-line stdlib/no-new-array y = new Array( 5 ); // sparse array y[ 2 ] = rand(); z = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; diff --git a/lib/node_modules/@stdlib/math/strided/ops/sub-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/ops/sub-by/test/test.ndarray.js index 1361514176dc..0c34ca677921 100644 --- a/lib/node_modules/@stdlib/math/strided/ops/sub-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/ops/sub-by/test/test.ndarray.js @@ -76,7 +76,10 @@ tape( 'the function performs element-wise subtraction via a callback function', subBy( x.length, x, 1, 0, y, 1, 0, z, 1, 0, accessor ); t.deepEqual( z, expected, 'deep equal' ); + // eslint-disable-next-line stdlib/no-new-array x = new Array( 5 ); // sparse array + + // eslint-disable-next-line stdlib/no-new-array y = new Array( 5 ); // sparse array z = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; @@ -85,8 +88,11 @@ tape( 'the function performs element-wise subtraction via a callback function', subBy( x.length, x, 1, 0, y, 1, 0, z, 1, 0, accessor ); t.deepEqual( z, expected, 'deep equal' ); + // eslint-disable-next-line stdlib/no-new-array x = new Array( 5 ); // sparse array x[ 2 ] = rand(); + + // eslint-disable-next-line stdlib/no-new-array y = new Array( 5 ); // sparse array y[ 2 ] = rand(); z = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; diff --git a/lib/node_modules/@stdlib/math/strided/special/abs-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/special/abs-by/test/test.ndarray.js index 22ae4b1920e9..ad92995cd187 100644 --- a/lib/node_modules/@stdlib/math/strided/special/abs-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/special/abs-by/test/test.ndarray.js @@ -61,6 +61,7 @@ tape( 'the function computes the absolute value of each indexed strided array el absBy( x.length, x, 1, 0, y, 1, 0, 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 ]; @@ -69,6 +70,7 @@ tape( 'the function computes the absolute value of each indexed strided array el absBy( x.length, x, 1, 0, y, 1, 0, accessor ); t.deepEqual( y, expected, 'deep equal' ); + // eslint-disable-next-line stdlib/no-new-array x = new Array( 5 ); // sparse array x[ 2 ] = -3.0; y = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; diff --git a/lib/node_modules/@stdlib/math/strided/special/abs2-by/test/test.main.js b/lib/node_modules/@stdlib/math/strided/special/abs2-by/test/test.main.js index ca0fcba993fd..7ab07b69e719 100644 --- a/lib/node_modules/@stdlib/math/strided/special/abs2-by/test/test.main.js +++ b/lib/node_modules/@stdlib/math/strided/special/abs2-by/test/test.main.js @@ -74,6 +74,7 @@ tape( 'the function computes the squared absolute value of each indexed strided abs2By( 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 squared absolute value of each indexed strided abs2By( 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/math/strided/special/abs2-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/special/abs2-by/test/test.ndarray.js index e531776378a9..84e931a0d9c5 100644 --- a/lib/node_modules/@stdlib/math/strided/special/abs2-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/special/abs2-by/test/test.ndarray.js @@ -73,6 +73,7 @@ tape( 'the function computes the squared absolute value of each indexed strided abs2By( x.length, x, 1, 0, y, 1, 0, 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 ]; @@ -81,6 +82,7 @@ tape( 'the function computes the squared absolute value of each indexed strided abs2By( x.length, x, 1, 0, y, 1, 0, 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/math/strided/special/acos-by/test/test.main.js b/lib/node_modules/@stdlib/math/strided/special/acos-by/test/test.main.js index 6e2810d1cb9f..509cc5fa8469 100644 --- a/lib/node_modules/@stdlib/math/strided/special/acos-by/test/test.main.js +++ b/lib/node_modules/@stdlib/math/strided/special/acos-by/test/test.main.js @@ -74,6 +74,7 @@ tape( 'the function computes the arccosine via a callback function', function te acosBy( 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 arccosine via a callback function', function te acosBy( 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/math/strided/special/acos-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/special/acos-by/test/test.ndarray.js index e04d52708a66..96db92b50342 100644 --- a/lib/node_modules/@stdlib/math/strided/special/acos-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/special/acos-by/test/test.ndarray.js @@ -73,6 +73,7 @@ tape( 'the function computes the arccosine via a callback function', function te acosBy( x.length, x, 1, 0, y, 1, 0, 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 ]; @@ -81,6 +82,7 @@ tape( 'the function computes the arccosine via a callback function', function te acosBy( x.length, x, 1, 0, y, 1, 0, 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/math/strided/special/acosh-by/test/test.main.js b/lib/node_modules/@stdlib/math/strided/special/acosh-by/test/test.main.js index fd01896a3a16..a8cfb7ac67d3 100644 --- a/lib/node_modules/@stdlib/math/strided/special/acosh-by/test/test.main.js +++ b/lib/node_modules/@stdlib/math/strided/special/acosh-by/test/test.main.js @@ -74,6 +74,7 @@ tape( 'the function computes the hyperbolic arccosine via a callback function', acoshBy( 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 hyperbolic arccosine via a callback function', acoshBy( 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/math/strided/special/acosh-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/special/acosh-by/test/test.ndarray.js index 98fbb2fc0973..42599b9aaf33 100644 --- a/lib/node_modules/@stdlib/math/strided/special/acosh-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/special/acosh-by/test/test.ndarray.js @@ -73,6 +73,7 @@ tape( 'the function computes the hyperbolic arccosine via a callback function', acoshBy( x.length, x, 1, 0, y, 1, 0, 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 ]; @@ -81,6 +82,7 @@ tape( 'the function computes the hyperbolic arccosine via a callback function', acoshBy( x.length, x, 1, 0, y, 1, 0, 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/math/strided/special/acot-by/test/test.main.js b/lib/node_modules/@stdlib/math/strided/special/acot-by/test/test.main.js index 25dab25b9868..1678df14736e 100644 --- a/lib/node_modules/@stdlib/math/strided/special/acot-by/test/test.main.js +++ b/lib/node_modules/@stdlib/math/strided/special/acot-by/test/test.main.js @@ -74,6 +74,7 @@ tape( 'the function computes the inverse cotangent via a callback function', fun acotBy( 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 inverse cotangent via a callback function', fun acotBy( 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/math/strided/special/acot-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/special/acot-by/test/test.ndarray.js index 5827b3c805a8..3fd72e92cec3 100644 --- a/lib/node_modules/@stdlib/math/strided/special/acot-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/special/acot-by/test/test.ndarray.js @@ -73,6 +73,7 @@ tape( 'the function computes the inverse cotangent via a callback function', fun acotBy( x.length, x, 1, 0, y, 1, 0, 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 ]; @@ -81,6 +82,7 @@ tape( 'the function computes the inverse cotangent via a callback function', fun acotBy( x.length, x, 1, 0, y, 1, 0, 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/math/strided/special/acoth-by/test/test.main.js b/lib/node_modules/@stdlib/math/strided/special/acoth-by/test/test.main.js index 8e82a9cae49b..2349d7112326 100644 --- a/lib/node_modules/@stdlib/math/strided/special/acoth-by/test/test.main.js +++ b/lib/node_modules/@stdlib/math/strided/special/acoth-by/test/test.main.js @@ -74,6 +74,7 @@ tape( 'the function computes the inverse hyperbolic cotangent via a callback fun acothBy( 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 inverse hyperbolic cotangent via a callback fun acothBy( 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/math/strided/special/acoth-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/special/acoth-by/test/test.ndarray.js index 502b56bf96c0..54d4a38f9237 100644 --- a/lib/node_modules/@stdlib/math/strided/special/acoth-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/special/acoth-by/test/test.ndarray.js @@ -73,6 +73,7 @@ tape( 'the function computes the inverse hyperbolic cotangent via a callback fun acothBy( x.length, x, 1, 0, y, 1, 0, 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 ]; @@ -81,6 +82,7 @@ tape( 'the function computes the inverse hyperbolic cotangent via a callback fun acothBy( x.length, x, 1, 0, y, 1, 0, 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/math/strided/special/acoversin-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/special/acoversin-by/test/test.ndarray.js index 8038955a76c1..88098a0657b2 100644 --- a/lib/node_modules/@stdlib/math/strided/special/acoversin-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/special/acoversin-by/test/test.ndarray.js @@ -73,6 +73,7 @@ tape( 'the function computes the inverse coversed sine via a callback function', acoversinBy( x.length, x, 1, 0, y, 1, 0, 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 ]; @@ -81,6 +82,7 @@ tape( 'the function computes the inverse coversed sine via a callback function', acoversinBy( x.length, x, 1, 0, y, 1, 0, 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/math/strided/special/ahaversin-by/test/test.main.js b/lib/node_modules/@stdlib/math/strided/special/ahaversin-by/test/test.main.js index f19000a69203..918880b07e6b 100644 --- a/lib/node_modules/@stdlib/math/strided/special/ahaversin-by/test/test.main.js +++ b/lib/node_modules/@stdlib/math/strided/special/ahaversin-by/test/test.main.js @@ -74,6 +74,7 @@ tape( 'the function computes the inverse half-value versed sine via a callback f ahaversinBy( 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 inverse half-value versed sine via a callback f ahaversinBy( 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/math/strided/special/ahaversin-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/special/ahaversin-by/test/test.ndarray.js index 847b9c4d8576..b085e3245c18 100644 --- a/lib/node_modules/@stdlib/math/strided/special/ahaversin-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/special/ahaversin-by/test/test.ndarray.js @@ -73,6 +73,7 @@ tape( 'the function computes the inverse half-value versed sine via a callback f ahaversinBy( x.length, x, 1, 0, y, 1, 0, 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 ]; @@ -81,6 +82,7 @@ tape( 'the function computes the inverse half-value versed sine via a callback f ahaversinBy( x.length, x, 1, 0, y, 1, 0, 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/math/strided/special/asin-by/test/test.main.js b/lib/node_modules/@stdlib/math/strided/special/asin-by/test/test.main.js index d140bacef723..9d3a59bbacc1 100644 --- a/lib/node_modules/@stdlib/math/strided/special/asin-by/test/test.main.js +++ b/lib/node_modules/@stdlib/math/strided/special/asin-by/test/test.main.js @@ -74,6 +74,7 @@ tape( 'the function computes the arcsine via a callback function', function test asinBy( 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 arcsine via a callback function', function test asinBy( 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/math/strided/special/asin-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/special/asin-by/test/test.ndarray.js index 70cfebf54c09..bb0de6587c34 100644 --- a/lib/node_modules/@stdlib/math/strided/special/asin-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/special/asin-by/test/test.ndarray.js @@ -73,6 +73,7 @@ tape( 'the function computes the arcsine via a callback function', function test asinBy( x.length, x, 1, 0, y, 1, 0, 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 ]; @@ -81,6 +82,7 @@ tape( 'the function computes the arcsine via a callback function', function test asinBy( x.length, x, 1, 0, y, 1, 0, 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/math/strided/special/asinh-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/special/asinh-by/test/test.ndarray.js index d748ef969fa0..2581f0c0db71 100644 --- a/lib/node_modules/@stdlib/math/strided/special/asinh-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/special/asinh-by/test/test.ndarray.js @@ -73,6 +73,7 @@ tape( 'the function computes the hyperbolic arcsine via a callback function', fu asinhBy( x.length, x, 1, 0, y, 1, 0, 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 ]; @@ -81,6 +82,7 @@ tape( 'the function computes the hyperbolic arcsine via a callback function', fu asinhBy( x.length, x, 1, 0, y, 1, 0, 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/math/strided/special/atan-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/special/atan-by/test/test.ndarray.js index 02502fa80ef5..742bd7f41f39 100644 --- a/lib/node_modules/@stdlib/math/strided/special/atan-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/special/atan-by/test/test.ndarray.js @@ -73,6 +73,7 @@ tape( 'the function computes the arctangent via a callback function', function t atanBy( x.length, x, 1, 0, y, 1, 0, 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 ]; @@ -81,6 +82,7 @@ tape( 'the function computes the arctangent via a callback function', function t atanBy( x.length, x, 1, 0, y, 1, 0, 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/math/strided/special/atanh-by/test/test.main.js b/lib/node_modules/@stdlib/math/strided/special/atanh-by/test/test.main.js index 0a8eab56cb3e..6ce34bd437dc 100644 --- a/lib/node_modules/@stdlib/math/strided/special/atanh-by/test/test.main.js +++ b/lib/node_modules/@stdlib/math/strided/special/atanh-by/test/test.main.js @@ -74,6 +74,7 @@ tape( 'the function computes the hyperbolic arctangent via a callback function', atanhBy( 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 hyperbolic arctangent via a callback function', atanhBy( 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/math/strided/special/atanh-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/special/atanh-by/test/test.ndarray.js index 7de5b1616704..39a903846205 100644 --- a/lib/node_modules/@stdlib/math/strided/special/atanh-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/special/atanh-by/test/test.ndarray.js @@ -73,6 +73,7 @@ tape( 'the function computes the hyperbolic arctangent via a callback function', atanhBy( x.length, x, 1, 0, y, 1, 0, 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 ]; @@ -81,6 +82,7 @@ tape( 'the function computes the hyperbolic arctangent via a callback function', atanhBy( x.length, x, 1, 0, y, 1, 0, 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/math/strided/special/avercos-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/special/avercos-by/test/test.ndarray.js index 4997cb68fd58..86a08e675ff8 100644 --- a/lib/node_modules/@stdlib/math/strided/special/avercos-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/special/avercos-by/test/test.ndarray.js @@ -73,6 +73,7 @@ tape( 'the function computes the inverse versed cosine via a callback function', avercosBy( x.length, x, 1, 0, y, 1, 0, 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 ]; @@ -81,6 +82,7 @@ tape( 'the function computes the inverse versed cosine via a callback function', avercosBy( x.length, x, 1, 0, y, 1, 0, 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/math/strided/special/besselj0-by/test/test.main.js b/lib/node_modules/@stdlib/math/strided/special/besselj0-by/test/test.main.js index a6507d9d1808..34593a7b5184 100644 --- a/lib/node_modules/@stdlib/math/strided/special/besselj0-by/test/test.main.js +++ b/lib/node_modules/@stdlib/math/strided/special/besselj0-by/test/test.main.js @@ -74,6 +74,7 @@ tape( 'the function computes the Bessel function of the first kind of order zero besselj0By( 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 zero besselj0By( 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/math/strided/special/besselj0-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/special/besselj0-by/test/test.ndarray.js index c5dd0d351df3..07ae9039ca35 100644 --- a/lib/node_modules/@stdlib/math/strided/special/besselj0-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/special/besselj0-by/test/test.ndarray.js @@ -73,6 +73,7 @@ tape( 'the function computes the Bessel function of the first kind of order zero besselj0By( x.length, x, 1, 0, y, 1, 0, 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 ]; @@ -81,6 +82,7 @@ tape( 'the function computes the Bessel function of the first kind of order zero besselj0By( x.length, x, 1, 0, y, 1, 0, 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/math/strided/special/besselj1-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/special/besselj1-by/test/test.ndarray.js index fb39828a3b37..f1350f7a99a3 100644 --- a/lib/node_modules/@stdlib/math/strided/special/besselj1-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/special/besselj1-by/test/test.ndarray.js @@ -73,6 +73,7 @@ tape( 'the function computes the Bessel function of the first kind of order one besselj1By( x.length, x, 1, 0, y, 1, 0, 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 ]; @@ -81,6 +82,7 @@ tape( 'the function computes the Bessel function of the first kind of order one besselj1By( x.length, x, 1, 0, y, 1, 0, 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/math/strided/special/bessely0-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/special/bessely0-by/test/test.ndarray.js index d27ef57d1866..b1af2ab11a35 100644 --- a/lib/node_modules/@stdlib/math/strided/special/bessely0-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/special/bessely0-by/test/test.ndarray.js @@ -73,6 +73,7 @@ tape( 'the function computes the Bessel function of the second kind of order zer bessely0By( x.length, x, 1, 0, y, 1, 0, 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 ]; @@ -81,6 +82,7 @@ tape( 'the function computes the Bessel function of the second kind of order zer bessely0By( x.length, x, 1, 0, y, 1, 0, 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/math/strided/special/bessely1-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/special/bessely1-by/test/test.ndarray.js index 351757de060c..e9309dafd189 100644 --- a/lib/node_modules/@stdlib/math/strided/special/bessely1-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/special/bessely1-by/test/test.ndarray.js @@ -73,6 +73,7 @@ tape( 'the function computes the Bessel function of the second kind of order one bessely1By( x.length, x, 1, 0, y, 1, 0, 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 ]; @@ -81,6 +82,7 @@ tape( 'the function computes the Bessel function of the second kind of order one bessely1By( x.length, x, 1, 0, y, 1, 0, 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/math/strided/special/binet-by/test/test.main.js b/lib/node_modules/@stdlib/math/strided/special/binet-by/test/test.main.js index 4b9a55c26d90..82a987c0c33d 100644 --- a/lib/node_modules/@stdlib/math/strided/special/binet-by/test/test.main.js +++ b/lib/node_modules/@stdlib/math/strided/special/binet-by/test/test.main.js @@ -74,6 +74,7 @@ tape( 'the function evaluates Binet\'s formula extended to real numbers via a ca binetBy( 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 evaluates Binet\'s formula extended to real numbers via a ca binetBy( 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/math/strided/special/binet-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/special/binet-by/test/test.ndarray.js index 7a0c3afa3c78..ad65dc72e959 100644 --- a/lib/node_modules/@stdlib/math/strided/special/binet-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/special/binet-by/test/test.ndarray.js @@ -73,6 +73,7 @@ tape( 'the function evaluates Binet\'s formula extended to real numbers via a ca binetBy( x.length, x, 1, 0, y, 1, 0, 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 ]; @@ -81,6 +82,7 @@ tape( 'the function evaluates Binet\'s formula extended to real numbers via a ca binetBy( x.length, x, 1, 0, y, 1, 0, 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/math/strided/special/cbrt-by/test/test.main.js b/lib/node_modules/@stdlib/math/strided/special/cbrt-by/test/test.main.js index 3731585c663e..9b288f9fb0ae 100644 --- a/lib/node_modules/@stdlib/math/strided/special/cbrt-by/test/test.main.js +++ b/lib/node_modules/@stdlib/math/strided/special/cbrt-by/test/test.main.js @@ -74,6 +74,7 @@ tape( 'the function computes the cube root of each indexed strided array element cbrtBy( 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 cube root of each indexed strided array element cbrtBy( 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/math/strided/special/cbrt-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/special/cbrt-by/test/test.ndarray.js index b89510599b5d..f53e04fae8c7 100644 --- a/lib/node_modules/@stdlib/math/strided/special/cbrt-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/special/cbrt-by/test/test.ndarray.js @@ -73,6 +73,7 @@ tape( 'the function computes the cube root of each indexed strided array element cbrtBy( x.length, x, 1, 0, y, 1, 0, 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 ]; @@ -81,6 +82,7 @@ tape( 'the function computes the cube root of each indexed strided array element cbrtBy( x.length, x, 1, 0, y, 1, 0, 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/math/strided/special/cos-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/special/cos-by/test/test.ndarray.js index 0949ce71c867..1845e400578f 100644 --- a/lib/node_modules/@stdlib/math/strided/special/cos-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/special/cos-by/test/test.ndarray.js @@ -73,6 +73,7 @@ tape( 'the function computes the cosine via a callback function', function test( cosBy( x.length, x, 1, 0, y, 1, 0, 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 ]; @@ -81,6 +82,7 @@ tape( 'the function computes the cosine via a callback function', function test( cosBy( x.length, x, 1, 0, y, 1, 0, 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/math/strided/special/sin-by/test/test.main.js b/lib/node_modules/@stdlib/math/strided/special/sin-by/test/test.main.js index 0fb66d202c4d..96d54a273ac7 100644 --- a/lib/node_modules/@stdlib/math/strided/special/sin-by/test/test.main.js +++ b/lib/node_modules/@stdlib/math/strided/special/sin-by/test/test.main.js @@ -74,6 +74,7 @@ tape( 'the function computes the sine of each indexed strided array element via sinBy( 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 sine of each indexed strided array element via sinBy( 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/math/strided/special/sqrt-by/test/test.main.js b/lib/node_modules/@stdlib/math/strided/special/sqrt-by/test/test.main.js index e387fc888afb..eff226523619 100644 --- a/lib/node_modules/@stdlib/math/strided/special/sqrt-by/test/test.main.js +++ b/lib/node_modules/@stdlib/math/strided/special/sqrt-by/test/test.main.js @@ -74,6 +74,7 @@ tape( 'the function computes the principal square root via a callback function', sqrtBy( 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 principal square root via a callback function', sqrtBy( 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/math/strided/special/sqrt-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/special/sqrt-by/test/test.ndarray.js index 48a91816e8a6..bba1ce37d7a7 100644 --- a/lib/node_modules/@stdlib/math/strided/special/sqrt-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/special/sqrt-by/test/test.ndarray.js @@ -73,6 +73,7 @@ tape( 'the function computes the principal square root via a callback function', sqrtBy( x.length, x, 1, 0, y, 1, 0, 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 ]; @@ -81,6 +82,7 @@ tape( 'the function computes the principal square root via a callback function', sqrtBy( x.length, x, 1, 0, y, 1, 0, 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/ndarray/from-scalar-like/lib/main.js b/lib/node_modules/@stdlib/ndarray/from-scalar-like/lib/main.js index c0c7bed7b7a4..21a7b0712163 100644 --- a/lib/node_modules/@stdlib/ndarray/from-scalar-like/lib/main.js +++ b/lib/node_modules/@stdlib/ndarray/from-scalar-like/lib/main.js @@ -23,7 +23,7 @@ var hasOwnProp = require( '@stdlib/assert/has-own-property' ); var isPlainObject = require( '@stdlib/assert/is-plain-object' ); var isNumber = require( '@stdlib/assert/is-number' ).isPrimitive; -var isComplexDataType = require( '@stdlib/array/base/assert/is-complex-floating-point-data-type' ); +var isComplexDataType = require( '@stdlib/ndarray/base/assert/is-complex-floating-point-data-type' ); var isAccessorArray = require( '@stdlib/array/base/assert/is-accessor-array' ); var isndarrayLike = require( '@stdlib/assert/is-ndarray-like' ); var accessorSetter = require( '@stdlib/array/base/accessor-setter' ); diff --git a/lib/node_modules/@stdlib/ndarray/from-scalar/lib/main.js b/lib/node_modules/@stdlib/ndarray/from-scalar/lib/main.js index 1b7814f4cafb..b8c71f4a8980 100644 --- a/lib/node_modules/@stdlib/ndarray/from-scalar/lib/main.js +++ b/lib/node_modules/@stdlib/ndarray/from-scalar/lib/main.js @@ -23,7 +23,7 @@ var hasOwnProp = require( '@stdlib/assert/has-own-property' ); var isPlainObject = require( '@stdlib/assert/is-plain-object' ); var isNumber = require( '@stdlib/assert/is-number' ).isPrimitive; -var isComplexDataType = require( '@stdlib/array/base/assert/is-complex-floating-point-data-type' ); +var isComplexDataType = require( '@stdlib/ndarray/base/assert/is-complex-floating-point-data-type' ); var isComplexLike = require( '@stdlib/assert/is-complex-like' ); var isBoolean = require( '@stdlib/assert/is-boolean' ).isPrimitive; var isAccessorArray = require( '@stdlib/array/base/assert/is-accessor-array' );