Skip to content

Commit 71f75c9

Browse files
authored
chore: fix JavaScript lint errors
PR-URL: #10247 Closes: #10246 Reviewed-by: Philipp Burckhardt <pburckhardt@outlook.com>
1 parent 337e9e8 commit 71f75c9

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

lib/node_modules/@stdlib/assert/is-bigint64array/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ bool = isBigInt64Array( new Float64Array( 10 ) );
9898
bool = isBigInt64Array( new Float32Array( 10 ) );
9999
// returns false
100100

101-
bool = isBigInt64Array( new Array( 10 ) );
101+
bool = isBigInt64Array( [] );
102102
// returns false
103103

104104
bool = isBigInt64Array( {} );

lib/node_modules/@stdlib/assert/is-bigint64array/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ bool = isBigInt64Array( new Float32Array( 10 ) );
7474
console.error( bool );
7575
// => false
7676

77-
bool = isBigInt64Array( new Array( 10 ) );
77+
bool = isBigInt64Array( [] );
7878
console.error( bool );
7979
// => false
8080

lib/node_modules/@stdlib/math/base/tools/normhermitepolyf/test/test.factory.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,23 +31,18 @@ var factory = require( './../lib' ).factory;
3131
// FIXTURES //
3232

3333
var random2 = require( './fixtures/python/random2.json' );
34-
3534
var mediumNegative1 = require( './fixtures/python/medium_negative_1.json' );
3635
var mediumNegative2 = require( './fixtures/python/medium_negative_2.json' );
3736
var mediumNegative5 = require( './fixtures/python/medium_negative_5.json' );
38-
3937
var mediumPositive1 = require( './fixtures/python/medium_positive_1.json' );
4038
var mediumPositive2 = require( './fixtures/python/medium_positive_2.json' );
4139
var mediumPositive5 = require( './fixtures/python/medium_positive_5.json' );
42-
4340
var smallPositive1 = require( './fixtures/python/small_positive_1.json' );
4441
var smallPositive2 = require( './fixtures/python/small_positive_2.json' );
4542
var smallPositive5 = require( './fixtures/python/small_positive_5.json' );
46-
4743
var smallNegative1 = require( './fixtures/python/small_negative_1.json' );
4844
var smallNegative2 = require( './fixtures/python/small_negative_2.json' );
4945
var smallNegative5 = require( './fixtures/python/small_negative_5.json' );
50-
5146
var tiny1 = require( './fixtures/python/tiny_1.json' );
5247
var tiny2 = require( './fixtures/python/tiny_2.json' );
5348
var tiny5 = require( './fixtures/python/tiny_5.json' );

0 commit comments

Comments
 (0)