Skip to content

Commit 53b71de

Browse files
committed
chore: fix javascript lint error(issue #10246)
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: passed - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 46cf998 commit 53b71de

2 files changed

Lines changed: 1 addition & 6 deletions

File tree

  • lib/node_modules/@stdlib

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)