Skip to content

Commit ab5d324

Browse files
committed
chore: resolve lint errors
1 parent 55866ea commit ab5d324

File tree

15 files changed

+7
-16
lines changed

15 files changed

+7
-16
lines changed

lib/node_modules/@stdlib/complex/float32/lib/main.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,6 @@ setReadOnly( Complex64.prototype, 'toString', toStr );
140140
*
141141
* - `JSON.stringify()` implicitly calls this method when stringifying a `Complex64` instance.
142142
*
143-
*
144143
* @name toJSON
145144
* @memberof Complex64.prototype
146145
* @type {Function}

lib/node_modules/@stdlib/complex/float64/lib/main.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,6 @@ setReadOnly( Complex128.prototype, 'toString', toStr );
139139
*
140140
* - `JSON.stringify()` implicitly calls this method when stringifying a `Complex128` instance.
141141
*
142-
*
143142
* @name toJSON
144143
* @memberof Complex128.prototype
145144
* @type {Function}

lib/node_modules/@stdlib/ndarray/base/ctor/benchmark/benchmark.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
// MODULES //
2222

2323
var bench = require( '@stdlib/bench' );
24-
var isFunction = require( '@stdlib/assert/is-function' );
2524
var randu = require( '@stdlib/random/base/randu' );
2625
var floor = require( '@stdlib/math/base/special/floor' );
2726
var pkg = require( './../package.json' ).name;

lib/node_modules/@stdlib/ndarray/base/ctor/lib/main.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,6 @@ setReadOnlyAccessor( ndarray.prototype, 'offset', function get() {
332332
*
333333
* - The array order is either row-major (C-style) or column-major (Fortran-style).
334334
*
335-
*
336335
* @name order
337336
* @memberof ndarray.prototype
338337
* @type {string}
@@ -525,7 +524,6 @@ setReadOnly( ndarray.prototype, 'iset', isetValue );
525524
*
526525
* - The method does **not** serialize data outside of the buffer region defined by the array configuration.
527526
*
528-
*
529527
* @name toString
530528
* @memberof ndarray.prototype
531529
* @type {Function}
@@ -552,7 +550,6 @@ setReadOnly( ndarray.prototype, 'toString', toString );
552550
* - `JSON.stringify()` implicitly calls this method when stringifying an `ndarray` instance.
553551
* - The method does **not** serialize data outside of the buffer region defined by the array configuration.
554552
*
555-
*
556553
* @name toJSON
557554
* @memberof ndarray.prototype
558555
* @type {Function}

lib/node_modules/@stdlib/ndarray/base/ind2sub/lib/main.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ var getSubscripts = require( './assign.js' );
106106
*
107107
* In short, from the perspective of a view, view data is always ordered.
108108
*
109-
*
110109
* @param {NonNegativeIntegerArray} shape - array shape
111110
* @param {IntegerArray} strides - stride array
112111
* @param {NonNegativeInteger} offset - location of the first indexed value **based** on the stride array

lib/node_modules/@stdlib/ndarray/dispatch/test/test.two_arrays.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,12 @@ var sum = require( './fixtures/sum.js' );
4444

4545
// TESTS //
4646

47+
tape( 'main export is a function', function test( t ) {
48+
t.ok( true, __filename );
49+
t.strictEqual( typeof dispatch, 'function', 'main export is a function' );
50+
t.end();
51+
});
52+
4753
tape( 'the function returns a function which throws an error if not provided an ndarray for the first argument', function test( t ) {
4854
var values;
4955
var types;

lib/node_modules/@stdlib/ndarray/ind2sub/lib/assign.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ var validate = require( './validate.js' );
4242
* - `wrap`: wrap around a linear index exceeding array dimensions using modulo arithmetic.
4343
* - `clamp`: set a linear index exceeding array dimensions to either `0` (minimum linear index) or the maximum linear index.
4444
*
45-
*
4645
* @param {NonNegativeIntegerArray} shape - array shape
4746
* @param {integer} idx - linear index
4847
* @param {Options} [options] - function options

lib/node_modules/@stdlib/ndarray/ind2sub/lib/main.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ var validate = require( './validate.js' );
4242
* - `wrap`: wrap around a linear index exceeding array dimensions using modulo arithmetic.
4343
* - `clamp`: set a linear index exceeding array dimensions to either `0` (minimum linear index) or the maximum linear index.
4444
*
45-
*
4645
* @param {NonNegativeIntegerArray} shape - array shape
4746
* @param {integer} idx - linear index
4847
* @param {Options} [options] - function options

lib/node_modules/@stdlib/ndarray/sub2ind/lib/main.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ var validate = require( './validate.js' );
4444
*
4545
* - If provided fewer modes than dimensions, the function recycles modes using modulo arithmetic.
4646
*
47-
*
4847
* @param {NonNegativeIntegerArray} shape - array shape
4948
* @param {...integer} i - subscripts
5049
* @param {Options} [options] - function options

lib/node_modules/@stdlib/regexp/regexp/lib/regexp.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ var reRegExp = require( './main.js' );
5757
* - `$/`
5858
* - string end
5959
*
60-
*
6160
* @constant
6261
* @type {RegExp}
6362
* @default /^\/((?:\\\/|[^\/])+)\/([imgy]*)$/

0 commit comments

Comments
 (0)