From b57c2247e93e4a045f0a2335b38d989e90360968 Mon Sep 17 00:00:00 2001 From: Syed Ishmum Ahnaf Date: Fri, 15 May 2026 02:51:08 +0600 Subject: [PATCH] chore: fix JavaScript lint errors --- 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: na - 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 --- --- lib/node_modules/@stdlib/math/base/special/ceilb/test/test.js | 2 +- .../@stdlib/math/base/special/ceilb/test/test.native.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/ceilb/test/test.js b/lib/node_modules/@stdlib/math/base/special/ceilb/test/test.js index b216670b859d..5ffe45c3a73e 100644 --- a/lib/node_modules/@stdlib/math/base/special/ceilb/test/test.js +++ b/lib/node_modules/@stdlib/math/base/special/ceilb/test/test.js @@ -163,7 +163,7 @@ tape( 'the function supports rounding a numeric value to a desired number of dec tape( 'due to floating-point rounding error, rounding a numeric value can result in unexpected behavior', function test( t ) { var x; - x = 0.2 + 0.1; // => 0.30000000000000004 + x = 0.2 + 0.1; // returns 0.30000000000000004 t.strictEqual( ceilb( x, -16, 10 ), 0.3000000000000001, 'equals 0.3000000000000001 and not 0.3' ); x = 24.616838129811768; diff --git a/lib/node_modules/@stdlib/math/base/special/ceilb/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/ceilb/test/test.native.js index b07c09a89bda..1d3e65511015 100644 --- a/lib/node_modules/@stdlib/math/base/special/ceilb/test/test.native.js +++ b/lib/node_modules/@stdlib/math/base/special/ceilb/test/test.native.js @@ -129,7 +129,7 @@ tape( 'the function supports rounding a numeric value to a desired number of dec tape( 'due to floating-point rounding error, rounding a numeric value can result in unexpected behavior', opts, function test( t ) { var x; - x = 0.2 + 0.1; // => 0.30000000000000004 + x = 0.2 + 0.1; // returns 0.30000000000000004 t.strictEqual( ceilb( x, -16, 10 ), 0.3000000000000001, 'equals 0.3000000000000001 and not 0.3' ); x = 24.616838129811768;