Skip to content

Commit f8936ce

Browse files
committed
Auto-generated commit
1 parent 4133c33 commit f8936ce

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

CHANGELOG.md

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

7-
## Unreleased (2025-09-13)
7+
## Unreleased (2025-09-14)
88

99
<section class="features">
1010

@@ -146,9 +146,9 @@
146146

147147
### Closed Issues
148148

149-
A total of 9 issues were closed in this release:
149+
A total of 10 issues were closed in this release:
150150

151-
[#6004](https://github.com/stdlib-js/stdlib/issues/6004), [#6786](https://github.com/stdlib-js/stdlib/issues/6786), [#6800](https://github.com/stdlib-js/stdlib/issues/6800), [#7060](https://github.com/stdlib-js/stdlib/issues/7060), [#7350](https://github.com/stdlib-js/stdlib/issues/7350), [#7694](https://github.com/stdlib-js/stdlib/issues/7694), [#7914](https://github.com/stdlib-js/stdlib/issues/7914), [#8000](https://github.com/stdlib-js/stdlib/issues/8000), [#8061](https://github.com/stdlib-js/stdlib/issues/8061)
151+
[#6004](https://github.com/stdlib-js/stdlib/issues/6004), [#6786](https://github.com/stdlib-js/stdlib/issues/6786), [#6800](https://github.com/stdlib-js/stdlib/issues/6800), [#7060](https://github.com/stdlib-js/stdlib/issues/7060), [#7350](https://github.com/stdlib-js/stdlib/issues/7350), [#7694](https://github.com/stdlib-js/stdlib/issues/7694), [#7914](https://github.com/stdlib-js/stdlib/issues/7914), [#8000](https://github.com/stdlib-js/stdlib/issues/8000), [#8043](https://github.com/stdlib-js/stdlib/issues/8043), [#8061](https://github.com/stdlib-js/stdlib/issues/8061)
152152

153153
</section>
154154

@@ -160,6 +160,7 @@ A total of 9 issues were closed in this release:
160160

161161
<details>
162162

163+
- [`47678cb`](https://github.com/stdlib-js/stdlib/commit/47678cbfcb7f1475f8eea7cc39dc9675fdfc3984) - **chore:** fix JavaScript lint errors [(#8075)](https://github.com/stdlib-js/stdlib/pull/8075) _(by Vara Rahul Rajana, Athan Reines)_
163164
- [`e9406ad`](https://github.com/stdlib-js/stdlib/commit/e9406adc483d1626e3fa6a61abc9c99ed78b306e) - **chore:** fix JavaScript lint errors [(#8062)](https://github.com/stdlib-js/stdlib/pull/8062) _(by Tyson Cung)_
164165
- [`c4bf225`](https://github.com/stdlib-js/stdlib/commit/c4bf22523ecfbab88fc1c6bc72468c859e1836e9) - **docs:** remove example _(by Philipp Burckhardt)_
165166
- [`1b9a036`](https://github.com/stdlib-js/stdlib/commit/1b9a036d676b247bf502c4ede08635b99fa611ca) - **fix:** allow correct values for `returns` option _(by Philipp Burckhardt)_
@@ -244,7 +245,7 @@ A total of 9 issues were closed in this release:
244245

245246
### Contributors
246247

247-
A total of 12 people contributed to this release. Thank you to the following contributors:
248+
A total of 13 people contributed to this release. Thank you to the following contributors:
248249

249250
- Athan Reines
250251
- DUDHAT HEMIL PRAVINKUMAR
@@ -257,6 +258,7 @@ A total of 12 people contributed to this release. Thank you to the following con
257258
- Srinivas Batthula
258259
- Tyson Cung
259260
- Uday Kakade
261+
- Vara Rahul Rajana
260262
- zhanggy
261263

262264
</section>

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ Tirtadwipa Manunggal <tirtadwipa.manunggal@gmail.com>
202202
Tudor Pagu <104032457+tudor-pagu@users.noreply.github.com>
203203
Tufailahmed Bargir <142114244+Tufailahmed-Bargir@users.noreply.github.com>
204204
Tushar Bhardwaj <155543597+TusharBhardwaj441@users.noreply.github.com>
205+
Tyson Cung <45380903+tysoncung@users.noreply.github.com>
205206
Uday Kakade <141299403+udaykakade25@users.noreply.github.com>
206207
Ujjwal Kirti <64329707+ujjwalkirti@users.noreply.github.com>
207208
Utkarsh <http://utkarsh11105@gmail.com>

zip/lib/main.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -155,23 +155,23 @@ function zip() {
155155
}
156156
}
157157
}
158-
out = new Array( len );
158+
out = [];
159159
for ( j = 0; j < len; j++ ) {
160160
// Temporary array to store tuples...
161-
arr = new Array( nargs );
161+
arr = [];
162162

163163
// Create the tuples...
164164
for ( i = 0; i < nargs; i++ ) {
165165
arg = args[ i ];
166166

167167
// If an array is too short, use a fill value...
168168
if ( arg.length <= j ) {
169-
arr[ i ] = fill;
169+
arr.push( fill );
170170
continue;
171171
}
172-
arr[ i ] = arg[ j ];
172+
arr.push( arg[ j ] );
173173
}
174-
out[ j ] = arr;
174+
out.push( arr );
175175
}
176176
return out;
177177
}

0 commit comments

Comments
 (0)