Skip to content

Commit 47d5407

Browse files
committed
Auto-generated commit
1 parent 92f1a84 commit 47d5407

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -869,6 +869,8 @@ A total of 12 people contributed to this release. Thank you to the following con
869869

870870
<details>
871871

872+
- [`4a70790`](https://github.com/stdlib-js/stdlib/commit/4a707903dfef7c2b56216000165706497d19a251) - **style:** add missing spaces _(by Philipp Burckhardt)_
873+
- [`ed5c4cc`](https://github.com/stdlib-js/stdlib/commit/ed5c4cccc06ad98f4de90310bf24a5a373761b43) - **chore:** minor clean-up _(by Philipp Burckhardt)_
872874
- [`7d6450c`](https://github.com/stdlib-js/stdlib/commit/7d6450c671dd91fffbec536a216a76f9e094dad0) - **docs:** update related packages sections [(#4186)](https://github.com/stdlib-js/stdlib/pull/4186) _(by stdlib-bot)_
873875
- [`d3d3d14`](https://github.com/stdlib-js/stdlib/commit/d3d3d14939ac77ab7d5a4476551108f8ff1c3f1f) - **docs:** update related packages sections [(#4149)](https://github.com/stdlib-js/stdlib/pull/4149) _(by stdlib-bot, Philipp Burckhardt)_
874876
- [`0ba282b`](https://github.com/stdlib-js/stdlib/commit/0ba282b89c384f06bbe3ff8ecd71982f05209606) - **chore:** minor clean-up _(by Philipp Burckhardt)_

base/cuevery-by/lib/assign.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function indexed( x, out, stride, offset, predicate, thisArg ) {
6161
io += stride;
6262
continue;
6363
}
64-
if ( !predicate.call( thisArg, x[ i ], i, x )) {
64+
if ( !predicate.call( thisArg, x[ i ], i, x ) ) {
6565
flg = false;
6666
}
6767
out[ io ] = flg;

base/take-map/lib/assign.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ var ind = require( '@stdlib/ndarray/base/ind' ).factory;
4747
* var out = [ 0, 0, 0, 0 ];
4848
*
4949
* function clbk( val ){
50-
return val;
51-
}
50+
* return val;
51+
* }
5252
*
5353
* var arr = takeMapIndexed( x, indices, 'throw', out, 1, 0, clbk );
5454
* // returns [ 4, 2, 3, 1 ]
@@ -73,7 +73,7 @@ function takeMapIndexed( x, indices, mode, out, stride, offset, clbk ) {
7373
out[ io ] = x[ j ];
7474
io += stride;
7575
}
76-
for (i = 0; i<out.length; i++) {
76+
for ( i = 0; i < out.length; i++ ) {
7777
// eslint-disable-next-line no-useless-call
7878
out[i] = clbk.call( null, out[i], i );
7979
}
@@ -137,7 +137,7 @@ function accessorsMap( x, indices, mode, out, stride, offset, clbk ) {
137137

138138
// Extract each desired element from the provided array...
139139
io = offset;
140-
for (i = 0; i < idata.length; i++) {
140+
for ( i = 0; i < idata.length; i++ ) {
141141
j = getIndex( iget( idata, i ), max );
142142

143143
// eslint-disable-next-line no-useless-call

base/unary5d-by/docs/types/test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,4 +139,4 @@ function identity( value: number ): number {
139139
unary5dBy( [ x, y ], [ 1, 1, 1, 2, 2 ] ); // $ExpectError
140140
unary5dBy( [ x, y ], [ 1, 1, 1, 2, 2 ], identity ); // $ExpectError
141141
unary5dBy( [ x, y ], [ 1, 1, 1, 2, 2 ], identity, identity, {}, {} ); // $ExpectError
142-
}
142+
}

fixed-endian-factory/lib/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdli
610610
}
611611
buf = this._buffer;
612612
out = [];
613-
for ( i = 0; i < this._length; i++) {
613+
for ( i = 0; i < this._length; i++ ) {
614614
v = buf[ GETTER ]( i*BYTES_PER_ELEMENT, this._isLE );
615615
if ( predicate.call( thisArg, v, i, this ) ) {
616616
out.push( v );

0 commit comments

Comments
 (0)