Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 35849b5

Browse files
committedJun 25, 2025·
fix: reorder arraylike2object call for clarity
--- 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: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 98d7ca6 commit 35849b5

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/variancetk/lib

1 file changed

+1
-1
lines changed
 

‎lib/node_modules/@stdlib/stats/base/variancetk/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ function variancetk( N, correction, x, strideX, offsetX ) {
5555
if ( N <= 0 || n <= 0.0 ) {
5656
return NaN;
5757
}
58-
o = arraylike2object( x );
5958
if ( N === 1 || strideX === 0 ) {
6059
return 0.0;
6160
}
61+
o = arraylike2object( x );
6262
if ( o.accessorProtocol ) {
6363
return accessors( N, correction, o, strideX, offsetX );
6464
}

0 commit comments

Comments
 (0)
Please sign in to comment.