Skip to content

Commit 5c46977

Browse files
committed
Auto-generated commit
1 parent 39c860a commit 5c46977

4 files changed

Lines changed: 52 additions & 7 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-02-18)
8+
9+
<section class="issues">
10+
11+
### Closed Issues
12+
13+
This release closes the following issue:
14+
15+
[#10327](https://github.com/stdlib-js/stdlib/issues/10327)
16+
17+
</section>
18+
19+
<!-- /.issues -->
20+
21+
<section class="commits">
22+
23+
### Commits
24+
25+
<details>
26+
27+
- [`8b01d81`](https://github.com/stdlib-js/stdlib/commit/8b01d81e8346ac3e4795b7d79a51902e201b2b98) - **chore:** fix JavaScript lint errors [(#10331)](https://github.com/stdlib-js/stdlib/pull/10331) _(by Bhargav Dabhade)_
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+
- Bhargav Dabhade
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-07)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,10 +177,10 @@ function indicator( value ) {
177177
vals = [ 'beep', 'boop', 'foo', 'bar', 'woot', 'woot' ];
178178

179179
// Generate a random collection...
180-
arr = new Array( 100 );
181-
for ( i = 0; i < arr.length; i++ ) {
180+
arr = [];
181+
for ( i = 0; i < 100; i++ ) {
182182
j = floor( randu()*vals.length );
183-
arr[ i ] = vals[ j ];
183+
arr.push( vals[ j ] );
184184
}
185185

186186
// Generate a frequency table:

examples/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ function indicator( value ) {
3535
vals = [ 'beep', 'boop', 'foo', 'bar', 'woot', 'woot' ];
3636

3737
// Generate a random collection...
38-
arr = new Array( 100 );
39-
for ( i = 0; i < arr.length; i++ ) {
38+
arr = [];
39+
for ( i = 0; i < 100; i++ ) {
4040
j = floor( randu()*vals.length );
41-
arr[ i ] = vals[ j ];
41+
arr.push( vals[ j ] );
4242
}
4343

4444
// Generate a frequency table:

0 commit comments

Comments
 (0)