Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions lib/node_modules/@stdlib/blas/base/gger/test/test.main.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* eslint-disable max-len */
/* eslint-disable max-len, stdlib/no-empty-lines-between-requires */

'use strict';

Expand Down Expand Up @@ -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;
Expand All @@ -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;
Expand All @@ -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;
Expand All @@ -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;
Expand Down
10 changes: 5 additions & 5 deletions lib/node_modules/@stdlib/blas/base/gger/test/test.ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* eslint-disable max-len */
/* eslint-disable max-len, stdlib/no-empty-lines-between-requires */

'use strict';

Expand Down Expand Up @@ -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;
Expand All @@ -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;
Expand All @@ -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;
Expand All @@ -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;
Expand Down
7 changes: 4 additions & 3 deletions lib/node_modules/@stdlib/blas/base/sger/test/test.ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* eslint-disable max-len */
/* eslint-disable max-len, stdlib/no-empty-lines-between-requires */

'use strict';

Expand Down Expand Up @@ -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' );
Expand Down Expand Up @@ -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;
Expand All @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* eslint-disable max-len */
/* eslint-disable max-len, stdlib/no-empty-lines-between-requires */

'use strict';

Expand Down Expand Up @@ -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;
Expand All @@ -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;
Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/blas/base/sger/test/test.sger.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* eslint-disable max-len */
/* eslint-disable max-len, stdlib/no-empty-lines-between-requires */

'use strict';

Expand Down Expand Up @@ -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;
Expand All @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* eslint-disable max-len */
/* eslint-disable max-len, stdlib/no-empty-lines-between-requires */

'use strict';

Expand Down Expand Up @@ -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;
Expand All @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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' );

Expand Down Expand Up @@ -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 ];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,17 @@

'use strict';

// TODO: improve JSDoc examples

Check warning on line 21 in lib/node_modules/@stdlib/plot/components/svg/axis/lib/main.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected 'todo' comment: 'TODO: improve JSDoc examples'

// MODULES //

var EventEmitter = require( 'events' ).EventEmitter;
var logger = require( 'debug' );
var linear = require( 'd3-scale' ).scaleLinear; // TODO: remove

Check warning on line 27 in lib/node_modules/@stdlib/plot/components/svg/axis/lib/main.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected 'todo' comment: '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' );
Expand Down Expand Up @@ -198,7 +199,7 @@
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 ];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
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' );
Expand Down Expand Up @@ -121,7 +122,7 @@
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 ];
Expand Down Expand Up @@ -154,7 +155,7 @@
* 'width': 500
* });
*
* var width = bkgd.width;

Check warning on line 158 in lib/node_modules/@stdlib/plot/components/svg/background/lib/main.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "bkgd"
* // returns 500
*/
defineProperty( Background.prototype, 'width', {
Expand All @@ -178,7 +179,7 @@
* 'height': 500
* });
*
* var height = bkgd.height;

Check warning on line 182 in lib/node_modules/@stdlib/plot/components/svg/background/lib/main.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "bkgd"
* // returns 500
*/
defineProperty( Background.prototype, 'height', {
Expand All @@ -202,7 +203,7 @@
* 'autoRender': true
* });
*
* var mode = bkgd.autoRender;

Check warning on line 206 in lib/node_modules/@stdlib/plot/components/svg/background/lib/main.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "bkgd"
* // returns true
*/
defineProperty( Background.prototype, 'autoRender', {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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' );
Expand Down Expand Up @@ -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 ];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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' );
Expand Down Expand Up @@ -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 ];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@

'use strict';

// TODO: improve JSDoc examples

Check warning on line 21 in lib/node_modules/@stdlib/plot/components/svg/path/lib/main.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected 'todo' comment: 'TODO: improve JSDoc examples'

// MODULES //

var EventEmitter = require( 'events' ).EventEmitter;
var logger = require( 'debug' );
var linear = require( 'd3-scale' ).scaleLinear; // TODO: remove

Check warning on line 27 in lib/node_modules/@stdlib/plot/components/svg/path/lib/main.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected 'todo' comment: 'TODO: remove'
var defineProperty = require( '@stdlib/utils/define-property' );
var setReadOnly = require( '@stdlib/utils/define-read-only-property' );
var objectKeys = require( '@stdlib/utils/keys' );
Expand All @@ -32,6 +32,7 @@
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' );
Expand Down Expand Up @@ -176,7 +177,7 @@
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 ];
Expand Down
3 changes: 2 additions & 1 deletion lib/node_modules/@stdlib/plot/components/svg/rug/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

var EventEmitter = require( 'events' ).EventEmitter;
var logger = require( 'debug' );
var linear = require( 'd3-scale' ).scaleLinear; // TODO: remove

Check warning on line 25 in lib/node_modules/@stdlib/plot/components/svg/rug/lib/main.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected 'todo' comment: 'TODO: remove'
var defineProperty = require( '@stdlib/utils/define-property' );
var setReadOnly = require( '@stdlib/utils/define-read-only-property' );
var objectKeys = require( '@stdlib/utils/keys' );
Expand All @@ -32,6 +32,7 @@
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' );
Expand Down Expand Up @@ -166,7 +167,7 @@
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 ];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@

'use strict';

// TODO: improve JSDoc examples

Check warning on line 21 in lib/node_modules/@stdlib/plot/components/svg/symbols/lib/main.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected 'todo' comment: 'TODO: improve JSDoc examples'

// MODULES //

var EventEmitter = require( 'events' ).EventEmitter;
var logger = require( 'debug' );
var linear = require( 'd3-scale' ).scaleLinear; // TODO: remove

Check warning on line 27 in lib/node_modules/@stdlib/plot/components/svg/symbols/lib/main.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected 'todo' comment: 'TODO: remove'
var defineProperty = require( '@stdlib/utils/define-property' );
var setReadOnly = require( '@stdlib/utils/define-read-only-property' );
var objectKeys = require( '@stdlib/utils/keys' );
Expand All @@ -32,6 +32,7 @@
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' );
Expand Down Expand Up @@ -175,7 +176,7 @@
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 ];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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' );
Expand Down Expand Up @@ -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 ];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
*
Expand Down
Loading