diff --git a/lib/node_modules/@stdlib/blas/base/drot/test/test.drot.js b/lib/node_modules/@stdlib/blas/base/drot/test/test.drot.js index 8f0ea53bf556..11d5455cf5bb 100644 --- a/lib/node_modules/@stdlib/blas/base/drot/test/test.drot.js +++ b/lib/node_modules/@stdlib/blas/base/drot/test/test.drot.js @@ -63,12 +63,12 @@ tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); t.strictEqual( typeof drot, 'function', 'main export is a function' ); t.end(); -}); +} ); tape( 'the function has an arity of 7', function test( t ) { t.strictEqual( drot.length, 7, 'returns expected value' ); t.end(); -}); +} ); tape( 'the function applies a plane rotation (sx=1, sy=1)', function test( t ) { var xbuf; @@ -108,7 +108,7 @@ tape( 'the function applies a plane rotation (sx=1, sy=1)', function test( t ) { t.strictEqual( out, y, 'returns expected value' ); } t.end(); -}); +} ); tape( 'the function applies a plane rotation (sx=2, sy=-2)', function test( t ) { var xbuf; @@ -148,7 +148,7 @@ tape( 'the function applies a plane rotation (sx=2, sy=-2)', function test( t ) t.strictEqual( out, y, 'returns expected value' ); } t.end(); -}); +} ); tape( 'the function applies a plane rotation (sx=-2, sy=1)', function test( t ) { var xbuf; @@ -188,7 +188,7 @@ tape( 'the function applies a plane rotation (sx=-2, sy=1)', function test( t ) t.strictEqual( out, y, 'returns expected value' ); } t.end(); -}); +} ); tape( 'the function applies a plane rotation (sx=-1, sy=-2)', function test( t ) { var xbuf; @@ -228,7 +228,7 @@ tape( 'the function applies a plane rotation (sx=-1, sy=-2)', function test( t ) t.strictEqual( out, y, 'returns expected value' ); } t.end(); -}); +} ); tape( 'the function supports an `x` stride', function test( t ) { var xe; @@ -260,7 +260,7 @@ tape( 'the function supports an `x` stride', function test( t ) { isApprox( t, y, ye, 2.0 ); t.end(); -}); +} ); tape( 'the function supports a `y` stride', function test( t ) { var xe; @@ -292,7 +292,7 @@ tape( 'the function supports a `y` stride', function test( t ) { t.deepEqual( y, ye, 'returns expected value' ); t.end(); -}); +} ); tape( 'the function returns a reference to the second input array', function test( t ) { var out; @@ -306,7 +306,7 @@ tape( 'the function returns a reference to the second input array', function tes t.strictEqual( out, y, 'returns expected value' ); t.end(); -}); +} ); tape( 'if provided an `N` parameter less than or equal to `0`, the function leaves both input arrays unchanged', function test( t ) { var xe; @@ -332,7 +332,7 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the function leav t.deepEqual( y, ye, 'returns expected value' ); t.end(); -}); +} ); tape( 'the function supports negative strides', function test( t ) { var xe; @@ -368,7 +368,7 @@ tape( 'the function supports negative strides', function test( t ) { isApprox( t, y, ye, 20.0 ); t.end(); -}); +} ); tape( 'the function supports complex access patterns', function test( t ) { var xe; @@ -404,4 +404,4 @@ tape( 'the function supports complex access patterns', function test( t ) { isApprox( t, y, ye, 5.0 ); t.end(); -}); +} ); diff --git a/lib/node_modules/@stdlib/blas/base/drot/test/test.drot.native.js b/lib/node_modules/@stdlib/blas/base/drot/test/test.drot.native.js index 3b8378039c8f..c01f99b21dd4 100644 --- a/lib/node_modules/@stdlib/blas/base/drot/test/test.drot.native.js +++ b/lib/node_modules/@stdlib/blas/base/drot/test/test.drot.native.js @@ -72,12 +72,12 @@ tape( 'main export is a function', opts, function test( t ) { t.ok( true, __filename ); t.strictEqual( typeof drot, 'function', 'main export is a function' ); t.end(); -}); +} ); tape( 'the function has an arity of 7', opts, function test( t ) { t.strictEqual( drot.length, 7, 'returns expected value' ); t.end(); -}); +} ); tape( 'the function applies a plane rotation (sx=1, sy=1)', opts, function test( t ) { var xbuf; @@ -117,7 +117,7 @@ tape( 'the function applies a plane rotation (sx=1, sy=1)', opts, function test( t.strictEqual( out, y, 'returns expected value' ); } t.end(); -}); +} ); tape( 'the function applies a plane rotation (sx=2, sy=-2)', opts, function test( t ) { var xbuf; @@ -157,7 +157,7 @@ tape( 'the function applies a plane rotation (sx=2, sy=-2)', opts, function test t.strictEqual( out, y, 'returns expected value' ); } t.end(); -}); +} ); tape( 'the function applies a plane rotation (sx=-2, sy=1)', opts, function test( t ) { var xbuf; @@ -197,7 +197,7 @@ tape( 'the function applies a plane rotation (sx=-2, sy=1)', opts, function test t.strictEqual( out, y, 'returns expected value' ); } t.end(); -}); +} ); tape( 'the function applies a plane rotation (sx=-1, sy=-2)', opts, function test( t ) { var xbuf; @@ -237,7 +237,7 @@ tape( 'the function applies a plane rotation (sx=-1, sy=-2)', opts, function tes t.strictEqual( out, y, 'returns expected value' ); } t.end(); -}); +} ); tape( 'the function supports an `x` stride', opts, function test( t ) { var xe; @@ -269,7 +269,7 @@ tape( 'the function supports an `x` stride', opts, function test( t ) { isApprox( t, y, ye, 2.0 ); t.end(); -}); +} ); tape( 'the function supports a `y` stride', opts, function test( t ) { var xe; @@ -301,7 +301,7 @@ tape( 'the function supports a `y` stride', opts, function test( t ) { t.deepEqual( y, ye, 'returns expected value' ); t.end(); -}); +} ); tape( 'the function returns a reference to the second input array', opts, function test( t ) { var out; @@ -315,7 +315,7 @@ tape( 'the function returns a reference to the second input array', opts, functi t.strictEqual( out, y, 'returns expected value' ); t.end(); -}); +} ); tape( 'if provided an `N` parameter less than or equal to `0`, the function leaves both input arrays unchanged', opts, function test( t ) { var xe; @@ -341,7 +341,7 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the function leav t.deepEqual( y, ye, 'returns expected value' ); t.end(); -}); +} ); tape( 'the function supports negative strides', opts, function test( t ) { var xe; @@ -377,7 +377,7 @@ tape( 'the function supports negative strides', opts, function test( t ) { isApprox( t, y, ye, 20.0 ); t.end(); -}); +} ); tape( 'the function supports complex access patterns', opts, function test( t ) { var xe; @@ -413,4 +413,4 @@ tape( 'the function supports complex access patterns', opts, function test( t ) isApprox( t, y, ye, 5.0 ); t.end(); -}); +} ); diff --git a/lib/node_modules/@stdlib/blas/base/drot/test/test.js b/lib/node_modules/@stdlib/blas/base/drot/test/test.js index 9a024d23d713..0cf6bf93032b 100644 --- a/lib/node_modules/@stdlib/blas/base/drot/test/test.js +++ b/lib/node_modules/@stdlib/blas/base/drot/test/test.js @@ -39,12 +39,12 @@ tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); t.strictEqual( typeof drot, 'function', 'main export is a function' ); t.end(); -}); +} ); tape( 'attached to the main export is a method providing an ndarray interface', function test( t ) { t.strictEqual( typeof drot.ndarray, 'function', 'method is a function' ); t.end(); -}); +} ); tape( 'if a native implementation is available, the main export is the native implementation', opts, function test( t ) { var drot = proxyquire( './../lib', { @@ -61,7 +61,7 @@ tape( 'if a native implementation is available, the main export is the native im function mock() { // Mock... } -}); +} ); tape( 'if a native implementation is not available, the main export is a JavaScript implementation', opts, function test( t ) { var drot; @@ -79,4 +79,4 @@ tape( 'if a native implementation is not available, the main export is a JavaScr function tryRequire() { return new Error( 'Cannot find module' ); } -}); +} ); diff --git a/lib/node_modules/@stdlib/blas/base/drot/test/test.ndarray.js b/lib/node_modules/@stdlib/blas/base/drot/test/test.ndarray.js index e5456f9cb67a..b3851696beaa 100644 --- a/lib/node_modules/@stdlib/blas/base/drot/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/blas/base/drot/test/test.ndarray.js @@ -63,12 +63,12 @@ tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); t.strictEqual( typeof drot, 'function', 'main export is a function' ); t.end(); -}); +} ); tape( 'the function has an arity of 9', function test( t ) { t.strictEqual( drot.length, 9, 'returns expected value' ); t.end(); -}); +} ); tape( 'the function applies a plane rotation (sx=1, sy=1)', function test( t ) { var xbuf; @@ -113,7 +113,7 @@ tape( 'the function applies a plane rotation (sx=1, sy=1)', function test( t ) { t.strictEqual( out, y, 'returns expected value' ); } t.end(); -}); +} ); tape( 'the function applies a plane rotation (sx=2, sy=-2)', function test( t ) { var xbuf; @@ -158,7 +158,7 @@ tape( 'the function applies a plane rotation (sx=2, sy=-2)', function test( t ) t.strictEqual( out, y, 'returns expected value' ); } t.end(); -}); +} ); tape( 'the function applies a plane rotation (sx=-2, sy=1)', function test( t ) { var xbuf; @@ -202,7 +202,7 @@ tape( 'the function applies a plane rotation (sx=-2, sy=1)', function test( t ) t.strictEqual( out, y, 'returns expected value' ); } t.end(); -}); +} ); tape( 'the function applies a plane rotation (sx=-1, sy=-2)', function test( t ) { var xbuf; @@ -247,7 +247,7 @@ tape( 'the function applies a plane rotation (sx=-1, sy=-2)', function test( t ) t.strictEqual( out, y, 'returns expected value' ); } t.end(); -}); +} ); tape( 'the function supports an `x` stride', function test( t ) { var xe; @@ -279,7 +279,7 @@ tape( 'the function supports an `x` stride', function test( t ) { isApprox( t, y, ye, 2.0 ); t.end(); -}); +} ); tape( 'the function supports an `x` offset', function test( t ) { var xe; @@ -311,7 +311,7 @@ tape( 'the function supports an `x` offset', function test( t ) { isApprox( t, y, ye, 2.0 ); t.end(); -}); +} ); tape( 'the function supports a `y` stride', function test( t ) { var xe; @@ -343,7 +343,7 @@ tape( 'the function supports a `y` stride', function test( t ) { isApprox( t, y, ye, 1.0 ); t.end(); -}); +} ); tape( 'the function supports a `y` offset', function test( t ) { var xe; @@ -375,7 +375,7 @@ tape( 'the function supports a `y` offset', function test( t ) { isApprox( t, y, ye, 1.0 ); t.end(); -}); +} ); tape( 'the function returns a reference to the second input array', function test( t ) { var out; @@ -389,7 +389,7 @@ tape( 'the function returns a reference to the second input array', function tes t.strictEqual( out, y, 'returns expected value' ); t.end(); -}); +} ); tape( 'if provided an `N` parameter less than or equal to `0`, the function leaves both input arrays unchanged', function test( t ) { var xe; @@ -415,7 +415,7 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the function leav t.deepEqual( y, ye, 'returns expected value' ); t.end(); -}); +} ); tape( 'the function supports negative strides', function test( t ) { var xe; @@ -451,7 +451,7 @@ tape( 'the function supports negative strides', function test( t ) { isApprox( t, y, ye, 20.0 ); t.end(); -}); +} ); tape( 'the function supports complex access patterns', function test( t ) { var xe; @@ -487,4 +487,4 @@ tape( 'the function supports complex access patterns', function test( t ) { isApprox( t, y, ye, 5.0 ); t.end(); -}); +} ); diff --git a/lib/node_modules/@stdlib/blas/base/drot/test/test.ndarray.native.js b/lib/node_modules/@stdlib/blas/base/drot/test/test.ndarray.native.js index c7cd296d3093..f9c4ddb379cc 100644 --- a/lib/node_modules/@stdlib/blas/base/drot/test/test.ndarray.native.js +++ b/lib/node_modules/@stdlib/blas/base/drot/test/test.ndarray.native.js @@ -72,12 +72,12 @@ tape( 'main export is a function', opts, function test( t ) { t.ok( true, __filename ); t.strictEqual( typeof drot, 'function', 'main export is a function' ); t.end(); -}); +} ); tape( 'the function has an arity of 9', opts, function test( t ) { t.strictEqual( drot.length, 9, 'returns expected value' ); t.end(); -}); +} ); tape( 'the function applies a plane rotation (sx=1, sy=1)', opts, function test( t ) { var xbuf; @@ -122,7 +122,7 @@ tape( 'the function applies a plane rotation (sx=1, sy=1)', opts, function test( t.strictEqual( out, y, 'returns expected value' ); } t.end(); -}); +} ); tape( 'the function applies a plane rotation (sx=2, sy=-2)', opts, function test( t ) { var xbuf; @@ -167,7 +167,7 @@ tape( 'the function applies a plane rotation (sx=2, sy=-2)', opts, function test t.strictEqual( out, y, 'returns expected value' ); } t.end(); -}); +} ); tape( 'the function applies a plane rotation (sx=-2, sy=1)', opts, function test( t ) { var xbuf; @@ -211,7 +211,7 @@ tape( 'the function applies a plane rotation (sx=-2, sy=1)', opts, function test t.strictEqual( out, y, 'returns expected value' ); } t.end(); -}); +} ); tape( 'the function applies a plane rotation (sx=-1, sy=-2)', opts, function test( t ) { var xbuf; @@ -256,7 +256,7 @@ tape( 'the function applies a plane rotation (sx=-1, sy=-2)', opts, function tes t.strictEqual( out, y, 'returns expected value' ); } t.end(); -}); +} ); tape( 'the function supports an `x` stride', opts, function test( t ) { var xe; @@ -288,7 +288,7 @@ tape( 'the function supports an `x` stride', opts, function test( t ) { isApprox( t, y, ye, 2.0 ); t.end(); -}); +} ); tape( 'the function supports an `x` offset', opts, function test( t ) { var xe; @@ -320,7 +320,7 @@ tape( 'the function supports an `x` offset', opts, function test( t ) { isApprox( t, y, ye, 2.0 ); t.end(); -}); +} ); tape( 'the function supports a `y` stride', opts, function test( t ) { var xe; @@ -352,7 +352,7 @@ tape( 'the function supports a `y` stride', opts, function test( t ) { isApprox( t, y, ye, 1.0 ); t.end(); -}); +} ); tape( 'the function supports a `y` offset', opts, function test( t ) { var xe; @@ -384,7 +384,7 @@ tape( 'the function supports a `y` offset', opts, function test( t ) { isApprox( t, y, ye, 1.0 ); t.end(); -}); +} ); tape( 'the function returns a reference to the second input array', opts, function test( t ) { var out; @@ -398,7 +398,7 @@ tape( 'the function returns a reference to the second input array', opts, functi t.strictEqual( out, y, 'returns expected value' ); t.end(); -}); +} ); tape( 'if provided an `N` parameter less than or equal to `0`, the function leaves both input arrays unchanged', opts, function test( t ) { var xe; @@ -424,7 +424,7 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the function leav t.deepEqual( y, ye, 'returns expected value' ); t.end(); -}); +} ); tape( 'the function supports negative strides', opts, function test( t ) { var xe; @@ -460,7 +460,7 @@ tape( 'the function supports negative strides', opts, function test( t ) { isApprox( t, y, ye, 20.0 ); t.end(); -}); +} ); tape( 'the function supports complex access patterns', opts, function test( t ) { var xe; @@ -496,4 +496,4 @@ tape( 'the function supports complex access patterns', opts, function test( t ) isApprox( t, y, ye, 5.0 ); t.end(); -}); +} );