Skip to content

Commit 8227dee

Browse files
committed
Auto-generated commit
1 parent 586f53c commit 8227dee

5 files changed

Lines changed: 49 additions & 4 deletions

File tree

.github/.keepalive

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

CHANGELOG.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,52 @@
22

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2026-03-23)
8+
9+
<section class="issues">
10+
11+
### Closed Issues
12+
13+
This release closes the following issue:
14+
15+
[#11082](https://github.com/stdlib-js/stdlib/issues/11082)
16+
17+
</section>
18+
19+
<!-- /.issues -->
20+
21+
<section class="commits">
22+
23+
### Commits
24+
25+
<details>
26+
27+
- [`e5b8da9`](https://github.com/stdlib-js/stdlib/commit/e5b8da9902dce751fc23b913afd2a153a5a57c92) - **chore:** resolve JavaScript lint errors in `utils/copy` [(#11083)](https://github.com/stdlib-js/stdlib/pull/11083) _(by Agentic-Worker)_
28+
29+
</details>
30+
31+
</section>
32+
33+
<!-- /.commits -->
34+
35+
<section class="contributors">
36+
37+
### Contributors
38+
39+
A total of 1 person contributed to this release. Thank you to this contributor:
40+
41+
- Agentic-Worker
42+
43+
</section>
44+
45+
<!-- /.contributors -->
46+
47+
</section>
48+
49+
<!-- /.release -->
50+
551
<section class="release" id="v0.2.3">
652

753
## 0.2.3 (2026-02-08)

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/deep_copy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ function deepCopy( val, copy, cache, refs, level ) {
262262
continue;
263263
}
264264
// Plain array or object...
265-
ref = ( isArray( x ) ) ? new Array( x.length ) : {};
265+
ref = ( isArray( x ) ) ? new Array( x.length ) : {}; // eslint-disable-line stdlib/no-new-array
266266
cache.push( x );
267267
refs.push( ref );
268268
if ( parent === 'array' ) {

lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function copy( value, level ) {
6767
} else {
6868
level = PINF;
6969
}
70-
out = ( isArray( value ) ) ? new Array( value.length ) : {};
70+
out = ( isArray( value ) ) ? new Array( value.length ) : {}; // eslint-disable-line stdlib/no-new-array
7171
return deepCopy( value, out, [value], [out], level );
7272
}
7373

0 commit comments

Comments
 (0)