Skip to content

Commit 2773163

Browse files
committed
chore: update initial value and clean-up
--- 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: passed - 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 aa59ef8 commit 2773163

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

lib/node_modules/@stdlib/array/base/cuevery-by-right/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ var assign = require( './assign.js' );
4545
* // returns [ true, true, true, false, false ]
4646
*/
4747
function cueveryByRight( x, predicate, thisArg ) {
48-
var out = filled( false, x.length );
48+
var out = filled( true, x.length );
4949
return assign( x, out, 1, 0, predicate, thisArg );
5050
}
5151

lib/node_modules/@stdlib/array/base/cuevery-by/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ var assign = require( './assign.js' );
3636
*
3737
* @example
3838
* function isPositive( value ) {
39-
* return ( value > 0 );
39+
* return ( value > 0 );
4040
* }
4141
*
4242
* var x = [ 1, 1, 1, 0, 1 ];
@@ -45,7 +45,7 @@ var assign = require( './assign.js' );
4545
* // returns [ true, true, true, false, false ]
4646
*/
4747
function cueveryBy( x, predicate, thisArg ) {
48-
var out = filled( false, x.length );
48+
var out = filled( true, x.length );
4949
return assign( x, out, 1, 0, predicate, thisArg );
5050
}
5151

lib/node_modules/@stdlib/array/base/cunone-by-right/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ var assign = require( './assign.js' );
4545
* // returns [ true, true, true, false, false ]
4646
*/
4747
function cunoneByRight( x, predicate, thisArg ) {
48-
var out = filled( false, x.length );
48+
var out = filled( true, x.length );
4949
return assign( x, out, 1, 0, predicate, thisArg );
5050
}
5151

lib/node_modules/@stdlib/array/base/cunone/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2024 The Stdlib Authors.
4+
* Copyright (c) 2024 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

lib/node_modules/@stdlib/array/base/cusome/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var assign = require( './assign.js' );
4040
* // returns [ false, false, false, false, true ]
4141
*/
4242
function cusome( x, n ) {
43-
var y = filled( true, x.length );
43+
var y = filled( false, x.length );
4444
return assign( x, n, y, 1, 0 );
4545
}
4646

0 commit comments

Comments
 (0)