Skip to content

Commit 5671daf

Browse files
committed
Auto-generated commit
1 parent facea5e commit 5671daf

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ A total of 18 issues were closed in this release:
162162

163163
<details>
164164

165+
- [`b9b8bcf`](https://github.com/stdlib-js/stdlib/commit/b9b8bcfd9708edd2b7b6c867bdfdde60f8e2b27b) - **chore:** resolve lint error in `utils/async/while` [(#8269)](https://github.com/stdlib-js/stdlib/pull/8269) _(by Suyash Pathak, Athan Reines)_
165166
- [`5f5bb2d`](https://github.com/stdlib-js/stdlib/commit/5f5bb2d4277a24000b57fb07bc28d821500cd7e8) - **docs:** update namespace table of contents [(#8425)](https://github.com/stdlib-js/stdlib/pull/8425) _(by stdlib-bot, Athan Reines)_
166167
- [`7e82b0c`](https://github.com/stdlib-js/stdlib/commit/7e82b0ca1438082723d163849d06b76ed335a883) - **chore:** fix JavaScript lint errors [(#8400)](https://github.com/stdlib-js/stdlib/pull/8400) _(by Rasim Bhat, Athan Reines)_
167168
- [`67a57a2`](https://github.com/stdlib-js/stdlib/commit/67a57a2861401202eb362b67971cf023ecf1518b) - **docs:** refactor example to use array PRNG [(#8233)](https://github.com/stdlib-js/stdlib/pull/8233) _(by Udit Agarwal, Athan Reines)_
@@ -262,7 +263,7 @@ A total of 18 issues were closed in this release:
262263

263264
### Contributors
264265

265-
A total of 19 people contributed to this release. Thank you to the following contributors:
266+
A total of 20 people contributed to this release. Thank you to the following contributors:
266267

267268
- Athan Reines
268269
- Dudhat Hemil Pravinkumar
@@ -277,6 +278,7 @@ A total of 19 people contributed to this release. Thank you to the following con
277278
- Rasim Bhat
278279
- Satyajeet Chavan
279280
- Srinivas Batthula
281+
- Suyash Pathak
280282
- Tyson Cung
281283
- Uday Kakade
282284
- Udit Agarwal

async/while/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,9 @@ function whileAsync( predicate, fcn, done, thisArg ) {
112112

113113
// Cache the most recent results...
114114
if ( arguments.length > 1 ) {
115-
args = new Array( arguments.length-1 );
115+
args = [];
116116
for ( i = 1; i < arguments.length; i++ ) {
117-
args[ i-1 ] = arguments[ i ];
117+
args.push( arguments[ i ] );
118118
}
119119
}
120120
// Run the test condition:

0 commit comments

Comments
 (0)