Skip to content

Commit 0bcf8c4

Browse files
committed
Auto-generated commit
1 parent b5f7a0f commit 0bcf8c4

6 files changed

Lines changed: 30 additions & 16 deletions

File tree

.github/.keepalive

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

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,3 +202,4 @@ jsconfig.json
202202
####################
203203
CLAUDE.md
204204
GEMINI.md
205+
.claude/

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

921
<section class="commits">
1022

1123
### Commits
1224

1325
<details>
1426

27+
- [`6a94f93`](https://github.com/stdlib-js/stdlib/commit/6a94f931962e3a3f227cbc6944f111794f333ce6) - **chore:** fix JavaScript lint errors [(#14286)](https://github.com/stdlib-js/stdlib/pull/14286) _(by Parth Kumbhar, Athan Reines)_
1528
- [`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)_
1629

1730
</details>
@@ -24,10 +37,11 @@
2437

2538
### Contributors
2639

27-
A total of 2 people contributed to this release. Thank you to the following contributors:
40+
A total of 3 people contributed to this release. Thank you to the following contributors:
2841

2942
- Athan Reines
3043
- Karan Anand
44+
- Parth Kumbhar
3145

3246
</section>
3347

dist/index.js

Lines changed: 8 additions & 8 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
@@ -57,9 +57,9 @@ var unshiftTypedArray = require( './unshift_typed_array.js' );
5757
function unshift( collection ) {
5858
var items;
5959
var i;
60-
items = new Array( arguments.length-1 );
60+
items = [];
6161
for ( i = 0; i < arguments.length-1; i++ ) {
62-
items[ i ] = arguments[ i+1 ];
62+
items.push( arguments[ i+1 ] );
6363
}
6464
if ( isArray( collection ) ) {
6565
return unshiftArray( collection, items );

0 commit comments

Comments
 (0)