diff --git a/lib/node_modules/@stdlib/blas/base/gger/test/test.main.js b/lib/node_modules/@stdlib/blas/base/gger/test/test.main.js index 3c404c11e760..fed324edc8b1 100644 --- a/lib/node_modules/@stdlib/blas/base/gger/test/test.main.js +++ b/lib/node_modules/@stdlib/blas/base/gger/test/test.main.js @@ -16,7 +16,7 @@ * limitations under the License. */ -/* eslint-disable max-len */ +/* eslint-disable max-len, stdlib/no-empty-lines-between-requires */ 'use strict'; @@ -358,7 +358,7 @@ tape( 'the function throws an error if provided an invalid tenth argument (acces } }); -tape( 'the function the rank 1 operation `A = α*x*y^T + A` (row-major)', function test( t ) { +tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (row-major)', function test( t ) { var expected; var data; var out; @@ -380,7 +380,7 @@ tape( 'the function the rank 1 operation `A = α*x*y^T + A` (row-major)', functi t.end(); }); -tape( 'the function the rank 1 operation `A = α*x*y^T + A` (row-major) (accessors)', function test( t ) { +tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (row-major) (accessors)', function test( t ) { var expected; var data; var abuf; @@ -404,7 +404,7 @@ tape( 'the function the rank 1 operation `A = α*x*y^T + A` (row-major) (accesso t.end(); }); -tape( 'the function the rank 1 operation `A = α*x*y^T + A` (column-major)', function test( t ) { +tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (column-major)', function test( t ) { var expected; var data; var out; @@ -426,7 +426,7 @@ tape( 'the function the rank 1 operation `A = α*x*y^T + A` (column-major)', fun t.end(); }); -tape( 'the function the rank 1 operation `A = α*x*y^T + A` (column-major) (accessors)', function test( t ) { +tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (column-major) (accessors)', function test( t ) { var expected; var data; var abuf; diff --git a/lib/node_modules/@stdlib/blas/base/gger/test/test.ndarray.js b/lib/node_modules/@stdlib/blas/base/gger/test/test.ndarray.js index 436873aa7746..f27082acdc16 100644 --- a/lib/node_modules/@stdlib/blas/base/gger/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/blas/base/gger/test/test.ndarray.js @@ -16,7 +16,7 @@ * limitations under the License. */ -/* eslint-disable max-len */ +/* eslint-disable max-len, stdlib/no-empty-lines-between-requires */ 'use strict'; @@ -268,7 +268,7 @@ tape( 'the function throws an error if provided an invalid eighth argument (acce } }); -tape( 'the function the rank 1 operation `A = α*x*y^T + A` (row-major)', function test( t ) { +tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (row-major)', function test( t ) { var expected; var data; var out; @@ -290,7 +290,7 @@ tape( 'the function the rank 1 operation `A = α*x*y^T + A` (row-major)', functi t.end(); }); -tape( 'the function the rank 1 operation `A = α*x*y^T + A` (row-major) (accessors)', function test( t ) { +tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (row-major) (accessors)', function test( t ) { var expected; var data; var abuf; @@ -315,7 +315,7 @@ tape( 'the function the rank 1 operation `A = α*x*y^T + A` (row-major) (accesso t.end(); }); -tape( 'the function the rank 1 operation `A = α*x*y^T + A` (column-major)', function test( t ) { +tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (column-major)', function test( t ) { var expected; var data; var out; @@ -337,7 +337,7 @@ tape( 'the function the rank 1 operation `A = α*x*y^T + A` (column-major)', fun t.end(); }); -tape( 'the function the rank 1 operation `A = α*x*y^T + A` (column-major) (accessors)', function test( t ) { +tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (column-major) (accessors)', function test( t ) { var expected; var data; var abuf; 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 e03016251470..5c2360e63c32 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 @@ -16,7 +16,7 @@ * limitations under the License. */ -/* eslint-disable max-len */ +/* eslint-disable max-len, stdlib/no-empty-lines-between-requires */ 'use strict'; @@ -44,6 +44,7 @@ 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' ); @@ -170,7 +171,7 @@ tape( 'the function throws an error if provided an invalid eighth argument', fun } }); -tape( 'the function the rank 1 operation `A = α*x*y^T + A` (row-major)', function test( t ) { +tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (row-major)', function test( t ) { var expected; var data; var out; @@ -192,7 +193,7 @@ tape( 'the function the rank 1 operation `A = α*x*y^T + A` (row-major)', functi t.end(); }); -tape( 'the function the rank 1 operation `A = α*x*y^T + A` (column-major)', function test( t ) { +tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (column-major)', function test( t ) { var expected; var data; var out; diff --git a/lib/node_modules/@stdlib/blas/base/sger/test/test.ndarray.native.js b/lib/node_modules/@stdlib/blas/base/sger/test/test.ndarray.native.js index d59fb3a31f3a..59d8baa79552 100644 --- a/lib/node_modules/@stdlib/blas/base/sger/test/test.ndarray.native.js +++ b/lib/node_modules/@stdlib/blas/base/sger/test/test.ndarray.native.js @@ -16,7 +16,7 @@ * limitations under the License. */ -/* eslint-disable max-len */ +/* eslint-disable max-len, stdlib/no-empty-lines-between-requires */ 'use strict'; @@ -180,7 +180,7 @@ tape( 'the function throws an error if provided an invalid eighth argument', opt } }); -tape( 'the function the rank 1 operation `A = α*x*y^T + A` (row-major)', opts, function test( t ) { +tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (row-major)', opts, function test( t ) { var expected; var data; var out; @@ -202,7 +202,7 @@ tape( 'the function the rank 1 operation `A = α*x*y^T + A` (row-major)', opts, t.end(); }); -tape( 'the function the rank 1 operation `A = α*x*y^T + A` (column-major)', opts, function test( t ) { +tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (column-major)', opts, function test( t ) { var expected; var data; var out; diff --git a/lib/node_modules/@stdlib/blas/base/sger/test/test.sger.js b/lib/node_modules/@stdlib/blas/base/sger/test/test.sger.js index 04b1eba25a47..f60a0af0a4c9 100644 --- a/lib/node_modules/@stdlib/blas/base/sger/test/test.sger.js +++ b/lib/node_modules/@stdlib/blas/base/sger/test/test.sger.js @@ -16,7 +16,7 @@ * limitations under the License. */ -/* eslint-disable max-len */ +/* eslint-disable max-len, stdlib/no-empty-lines-between-requires */ 'use strict'; @@ -208,7 +208,7 @@ tape( 'the function throws an error if provided an invalid tenth argument', func } }); -tape( 'the function the rank 1 operation `A = α*x*y^T + A` (row-major)', function test( t ) { +tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (row-major)', function test( t ) { var expected; var data; var out; @@ -230,7 +230,7 @@ tape( 'the function the rank 1 operation `A = α*x*y^T + A` (row-major)', functi t.end(); }); -tape( 'the function the rank 1 operation `A = α*x*y^T + A` (column-major)', function test( t ) { +tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (column-major)', function test( t ) { var expected; var data; var out; diff --git a/lib/node_modules/@stdlib/blas/base/sger/test/test.sger.native.js b/lib/node_modules/@stdlib/blas/base/sger/test/test.sger.native.js index 2dec635ddbb3..c885d34f56aa 100644 --- a/lib/node_modules/@stdlib/blas/base/sger/test/test.sger.native.js +++ b/lib/node_modules/@stdlib/blas/base/sger/test/test.sger.native.js @@ -16,7 +16,7 @@ * limitations under the License. */ -/* eslint-disable max-len */ +/* eslint-disable max-len, stdlib/no-empty-lines-between-requires */ 'use strict'; @@ -217,7 +217,7 @@ tape( 'the function throws an error if provided an invalid tenth argument', opts } }); -tape( 'the function the rank 1 operation `A = α*x*y^T + A` (row-major)', opts, function test( t ) { +tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (row-major)', opts, function test( t ) { var expected; var data; var out; @@ -239,7 +239,7 @@ tape( 'the function the rank 1 operation `A = α*x*y^T + A` (row-major)', opts, t.end(); }); -tape( 'the function the rank 1 operation `A = α*x*y^T + A` (column-major)', opts, function test( t ) { +tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (column-major)', opts, function test( t ) { var expected; var data; var out; diff --git a/lib/node_modules/@stdlib/plot/components/svg/annotations/lib/main.js b/lib/node_modules/@stdlib/plot/components/svg/annotations/lib/main.js index d7f5ea9b4b35..a70facd3494b 100644 --- a/lib/node_modules/@stdlib/plot/components/svg/annotations/lib/main.js +++ b/lib/node_modules/@stdlib/plot/components/svg/annotations/lib/main.js @@ -24,6 +24,7 @@ var EventEmitter = require( 'events' ).EventEmitter; var logger = require( 'debug' ); var setReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-property' ); var inherit = require( '@stdlib/utils/inherit' ); +var zeros = require( '@stdlib/array/zeros' ); var instanceOf = require( '@stdlib/assert/instance-of' ); var render = require( './render.js' ); @@ -75,7 +76,7 @@ function Annotations() { var args; var i; debug( 'Received a render event. Re-emitting...' ); - args = new Array( arguments.length+1 ); + args = zeros( arguments.length+1, 'generic' ); args[ 0 ] = 'render'; for ( i = 0; i < arguments.length; i++ ) { args[ i+1 ] = arguments[ i ]; diff --git a/lib/node_modules/@stdlib/plot/components/svg/axis/lib/main.js b/lib/node_modules/@stdlib/plot/components/svg/axis/lib/main.js index 372f5b19ee19..55cf2946d893 100644 --- a/lib/node_modules/@stdlib/plot/components/svg/axis/lib/main.js +++ b/lib/node_modules/@stdlib/plot/components/svg/axis/lib/main.js @@ -28,6 +28,7 @@ var linear = require( 'd3-scale' ).scaleLinear; // TODO: remove var defineProperty = require( '@stdlib/utils/define-property' ); var setReadOnly = require( '@stdlib/utils/define-read-only-property' ); var copy = require( '@stdlib/utils/copy' ); +var zeros = require( '@stdlib/array/zeros' ); var defaults = require( './defaults.json' ); var validate = require( './validate.js' ); var setScale = require( './props/scale/set.js' ); @@ -198,7 +199,7 @@ function Axis( options ) { var args; var i; debug( 'Received a render event. Re-emitting...' ); - args = new Array( arguments.length+1 ); + args = zeros( arguments.length+1, 'generic' ); args[ 0 ] = 'render'; for ( i = 0; i < arguments.length; i++ ) { args[ i+1 ] = arguments[ i ]; diff --git a/lib/node_modules/@stdlib/plot/components/svg/background/lib/main.js b/lib/node_modules/@stdlib/plot/components/svg/background/lib/main.js index 4f9050b878f3..956ab2145a32 100644 --- a/lib/node_modules/@stdlib/plot/components/svg/background/lib/main.js +++ b/lib/node_modules/@stdlib/plot/components/svg/background/lib/main.js @@ -25,6 +25,7 @@ var logger = require( 'debug' ); var defineProperty = require( '@stdlib/utils/define-property' ); var setReadOnly = require( '@stdlib/utils/define-read-only-property' ); var copy = require( '@stdlib/utils/copy' ); +var zeros = require( '@stdlib/array/zeros' ); var defaults = require( './defaults.json' ); var validate = require( './validate.js' ); var setWidth = require( './props/width/set.js' ); @@ -121,7 +122,7 @@ function Background( options ) { var args; var i; debug( 'Received a render event. Re-emitting...' ); - args = new Array( arguments.length+1 ); + args = zeros( arguments.length+1, 'generic' ); args[ 0 ] = 'render'; for ( i = 0; i < arguments.length; i++ ) { args[ i+1 ] = arguments[ i ]; diff --git a/lib/node_modules/@stdlib/plot/components/svg/canvas/lib/main.js b/lib/node_modules/@stdlib/plot/components/svg/canvas/lib/main.js index bfee5378b671..0505633b0d87 100644 --- a/lib/node_modules/@stdlib/plot/components/svg/canvas/lib/main.js +++ b/lib/node_modules/@stdlib/plot/components/svg/canvas/lib/main.js @@ -25,6 +25,7 @@ var logger = require( 'debug' ); var defineProperty = require( '@stdlib/utils/define-property' ); var setReadOnly = require( '@stdlib/utils/define-read-only-property' ); var copy = require( '@stdlib/utils/copy' ); +var zeros = require( '@stdlib/array/zeros' ); var defaults = require( './defaults.json' ); var validate = require( './validate.js' ); var setWidth = require( './props/width/set.js' ); @@ -121,7 +122,7 @@ function Canvas( options ) { var args; var i; debug( 'Received a render event. Re-emitting...' ); - args = new Array( arguments.length+1 ); + args = zeros( arguments.length+1, 'generic' ); args[ 0 ] = 'render'; for ( i = 0; i < arguments.length; i++ ) { args[ i+1 ] = arguments[ i ]; diff --git a/lib/node_modules/@stdlib/plot/components/svg/graph/lib/main.js b/lib/node_modules/@stdlib/plot/components/svg/graph/lib/main.js index 7897874fc1b5..d420c57b5625 100644 --- a/lib/node_modules/@stdlib/plot/components/svg/graph/lib/main.js +++ b/lib/node_modules/@stdlib/plot/components/svg/graph/lib/main.js @@ -25,6 +25,7 @@ var logger = require( 'debug' ); var defineProperty = require( '@stdlib/utils/define-property' ); var setReadOnly = require( '@stdlib/utils/define-read-only-property' ); var copy = require( '@stdlib/utils/copy' ); +var zeros = require( '@stdlib/array/zeros' ); var defaults = require( './defaults.json' ); var validate = require( './validate.js' ); var setTranslateX = require( './props/translate-x/set.js' ); @@ -121,7 +122,7 @@ function Graph( options ) { var args; var i; debug( 'Received a render event. Re-emitting...' ); - args = new Array( arguments.length+1 ); + args = zeros( arguments.length+1, 'generic' ); args[ 0 ] = 'render'; for ( i = 0; i < arguments.length; i++ ) { args[ i+1 ] = arguments[ i ]; diff --git a/lib/node_modules/@stdlib/plot/components/svg/path/lib/main.js b/lib/node_modules/@stdlib/plot/components/svg/path/lib/main.js index d2eaa36951cb..fccb59a7349c 100644 --- a/lib/node_modules/@stdlib/plot/components/svg/path/lib/main.js +++ b/lib/node_modules/@stdlib/plot/components/svg/path/lib/main.js @@ -32,6 +32,7 @@ var format = require( '@stdlib/string/format' ); var copy = require( '@stdlib/utils/copy' ); var merge = require( '@stdlib/utils/merge' ); var isObject = require( '@stdlib/assert/is-plain-object' ); +var zeros = require( '@stdlib/array/zeros' ); var isDefined = require( './accessors/is_defined.js' ); var defaults = require( './defaults.json' ); var setX = require( './props/x/set.js' ); @@ -176,7 +177,7 @@ function Path( options ) { var args; var i; debug( 'Received a render event. Re-emitting...' ); - args = new Array( arguments.length+1 ); + args = zeros( arguments.length+1, 'generic' ); args[ 0 ] = 'render'; for ( i = 0; i < arguments.length; i++ ) { args[ i+1 ] = arguments[ i ]; diff --git a/lib/node_modules/@stdlib/plot/components/svg/rug/lib/main.js b/lib/node_modules/@stdlib/plot/components/svg/rug/lib/main.js index a625d7d2974c..0d277eca3247 100644 --- a/lib/node_modules/@stdlib/plot/components/svg/rug/lib/main.js +++ b/lib/node_modules/@stdlib/plot/components/svg/rug/lib/main.js @@ -32,6 +32,7 @@ var merge = require( '@stdlib/utils/merge' ); var isObject = require( '@stdlib/assert/is-plain-object' ); var instanceOf = require( '@stdlib/assert/instance-of' ); var inherit = require( '@stdlib/utils/inherit' ); +var zeros = require( '@stdlib/array/zeros' ); var isDefined = require( './accessors/is_defined.js' ); var defaults = require( './defaults.json' ); var setAutoRender = require( './props/auto-render/set.js' ); @@ -166,7 +167,7 @@ function Rug( options ) { var args; var i; debug( 'Received a render event. Re-emitting...' ); - args = new Array( arguments.length+1 ); + args = zeros( arguments.length+1, 'generic' ); args[ 0 ] = 'render'; for ( i = 0; i < arguments.length; i++ ) { args[ i+1 ] = arguments[ i ]; diff --git a/lib/node_modules/@stdlib/plot/components/svg/symbols/lib/main.js b/lib/node_modules/@stdlib/plot/components/svg/symbols/lib/main.js index 0aeb8ca62888..f7ba56624028 100644 --- a/lib/node_modules/@stdlib/plot/components/svg/symbols/lib/main.js +++ b/lib/node_modules/@stdlib/plot/components/svg/symbols/lib/main.js @@ -32,6 +32,7 @@ var format = require( '@stdlib/string/format' ); var copy = require( '@stdlib/utils/copy' ); var merge = require( '@stdlib/utils/merge' ); var isObject = require( '@stdlib/assert/is-plain-object' ); +var zeros = require( '@stdlib/array/zeros' ); var isDefined = require( './accessors/is_defined.js' ); var defaults = require( './defaults.json' ); var setSymbol = require( './props/symbol/set.js' ); @@ -175,7 +176,7 @@ function Symbols( options ) { var args; var i; debug( 'Received a render event. Re-emitting...' ); - args = new Array( arguments.length+1 ); + args = zeros( arguments.length+1, 'generic' ); args[ 0 ] = 'render'; for ( i = 0; i < arguments.length; i++ ) { args[ i+1 ] = arguments[ i ]; diff --git a/lib/node_modules/@stdlib/plot/components/svg/title/lib/main.js b/lib/node_modules/@stdlib/plot/components/svg/title/lib/main.js index e45678b01df7..ca9e03e81049 100644 --- a/lib/node_modules/@stdlib/plot/components/svg/title/lib/main.js +++ b/lib/node_modules/@stdlib/plot/components/svg/title/lib/main.js @@ -25,6 +25,7 @@ var logger = require( 'debug' ); var defineProperty = require( '@stdlib/utils/define-property' ); var setReadOnly = require( '@stdlib/utils/define-read-only-property' ); var copy = require( '@stdlib/utils/copy' ); +var zeros = require( '@stdlib/array/zeros' ); var defaults = require( './defaults.json' ); var validate = require( './validate.js' ); var setText = require( './props/text/set.js' ); @@ -111,7 +112,7 @@ function Title( options ) { var args; var i; debug( 'Received a render event. Re-emitting...' ); - args = new Array( arguments.length+1 ); + args = zeros( arguments.length+1, 'generic' ); args[ 0 ] = 'render'; for ( i = 0; i < arguments.length; i++ ) { args[ i+1 ] = arguments[ i ]; diff --git a/lib/node_modules/@stdlib/stats/base/dists/levy/docs/types/index.d.ts b/lib/node_modules/@stdlib/stats/base/dists/levy/docs/types/index.d.ts index 15afce31dc2b..4f3612e3cf44 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/levy/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/stats/base/dists/levy/docs/types/index.d.ts @@ -70,7 +70,7 @@ interface Namespace { Levy: typeof Levy; /** - * Returns the differential entropy for a Lévy distribution with location `mu` and scale `s`. + * Returns the differential entropy for a Lévy distribution with location `mu` and scale `c`. * * ## Notes *