Skip to content

Commit c4559a3

Browse files
committed
Auto-generated commit
1 parent 42721f5 commit c4559a3

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ This release closes the following issue:
2424

2525
<details>
2626

27+
- [`7aec76a`](https://github.com/stdlib-js/stdlib/commit/7aec76a713e908d3489003144b7d1e470b62745e) - **refactor:** ensure contiguous array allocation _(by Athan Reines)_
2728
- [`7d17660`](https://github.com/stdlib-js/stdlib/commit/7d17660137c611ad174f81df229a31f4d3080cbc) - **chore:** fix JavaScript lint errors [(#9690)](https://github.com/stdlib-js/stdlib/pull/9690) _(by Divyanshu)_
2829
- [`321e49e`](https://github.com/stdlib-js/stdlib/commit/321e49e9965648f1b5eb6a840fe454959af0ec49) - **docs:** add missing periods to list items _(by Philipp Burckhardt)_
2930
- [`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(by Philipp Burckhardt)_
@@ -38,8 +39,9 @@ This release closes the following issue:
3839

3940
### Contributors
4041

41-
A total of 2 people contributed to this release. Thank you to the following contributors:
42+
A total of 3 people contributed to this release. Thank you to the following contributors:
4243

44+
- Athan Reines
4345
- Divyanshu
4446
- Philipp Burckhardt
4547

dist/index.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/main.js

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

9292
// Cache the most recent results...
9393
if ( arguments.length > 1 ) {
94-
args = new Array( arguments.length-1 ); // eslint-disable-line stdlib/no-new-array
94+
args = [];
9595
for ( i = 1; i < arguments.length; i++ ) {
96-
args[ i-1 ] = arguments[ i ];
96+
args.push( arguments[ i ] );
9797
}
9898
}
9999
// Run the test condition:

0 commit comments

Comments
 (0)