Skip to content

Commit 5d8cea4

Browse files
committed
Auto-generated commit
1 parent 52cef75 commit 5d8cea4

6 files changed

Lines changed: 25 additions & 12 deletions

File tree

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ jobs:
153153
- name: 'Replace GitHub MathJax equations with SVGs'
154154
run: |
155155
find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe 's/```math\n([\s\S]+?)\n```\n\n//g'
156-
find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe 's/<!-- <div class="equation"(.*)(<\/div>\s*-->)/<div class="equation"$1<\/div>/sg'
156+
find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe 's/<!-- <div class="equation"(.*?)(<\/div>\s*-->)/<div class="equation"$1<\/div>/sg'
157157
158158
# Replace GitHub links to individual packages with npm links:
159159
- name: 'Replace all GitHub links to individual packages with npm links'

CHANGELOG.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,27 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-06-03)
7+
## Unreleased (2026-07-06)
8+
9+
<section class="issues">
10+
11+
### Closed Issues
12+
13+
This release closes the following issue:
14+
15+
[#11209](https://github.com/stdlib-js/stdlib/issues/11209)
16+
17+
</section>
18+
19+
<!-- /.issues -->
820

921
<section class="commits">
1022

1123
### Commits
1224

1325
<details>
1426

27+
- [`1396582`](https://github.com/stdlib-js/stdlib/commit/1396582a1c2c075d60f79d72115145b5ee2dd245) - **chore:** fix JavaScript lint errors [(#11211)](https://github.com/stdlib-js/stdlib/pull/11211) _(by Jean Carlos Vargas, Athan Reines)_
1528
- [`1c95150`](https://github.com/stdlib-js/stdlib/commit/1c9515034550374b8759dcaf681c6cbc99d47030) - **docs:** fix errors and inconsistencies in `@stdlib/utils` TypeScript declarations [(#12391)](https:-/github.com/stdlib-js/stdlib/pull/12391) _(by Philipp Burckhardt, Athan Reines)_
1629
- [`822fadc`](https://github.com/stdlib-js/stdlib/commit/822fadca5619ac17182fad841af43ec6d1cdd81e) - **bench:** refactor to use string interpolation in `utils` [(#11410)](https://github.com/stdlib-js/stdlib/pull/11410) _(by Karan Anand, Athan Reines)_
1730

@@ -25,9 +38,10 @@
2538

2639
### Contributors
2740

28-
A total of 3 people contributed to this release. Thank you to the following contributors:
41+
A total of 4 people contributed to this release. Thank you to the following contributors:
2942

3043
- Athan Reines
44+
- Jean Carlos Vargas
3145
- Karan Anand
3246
- Philipp Burckhardt
3347

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: 3 additions & 3 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
@@ -112,9 +112,9 @@ function untilAsync( 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)