Skip to content

Commit be15c0d

Browse files
committed
Auto-generated commit
1 parent 1320341 commit be15c0d

File tree

4 files changed

+18
-8
lines changed

4 files changed

+18
-8
lines changed

.gitignore

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,12 @@ jsconfig.json
188188
# Other editor files #
189189
######################
190190
.idea/
191-
192-
# Cursor #
193-
##########
191+
.cursor
194192
.cursorignore
193+
.windsurfrules
194+
.clinerules
195+
196+
# AI coding agents #
197+
####################
198+
CLAUDE.md
199+
GEMINI.md

CHANGELOG.md

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

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

99
<section class="issues">
1010

1111
### Closed Issues
1212

13-
A total of 4 issues were closed in this release:
13+
A total of 5 issues were closed in this release:
1414

15-
[#5791](https://github.com/stdlib-js/stdlib/issues/5791), [#7019](https://github.com/stdlib-js/stdlib/issues/7019), [#7744](https://github.com/stdlib-js/stdlib/issues/7744), [#7993](https://github.com/stdlib-js/stdlib/issues/7993)
15+
[#5791](https://github.com/stdlib-js/stdlib/issues/5791), [#7019](https://github.com/stdlib-js/stdlib/issues/7019), [#7744](https://github.com/stdlib-js/stdlib/issues/7744), [#7993](https://github.com/stdlib-js/stdlib/issues/7993), [#8058](https://github.com/stdlib-js/stdlib/issues/8058)
1616

1717
</section>
1818

@@ -24,6 +24,7 @@ A total of 4 issues were closed in this release:
2424

2525
<details>
2626

27+
- [`f5d1741`](https://github.com/stdlib-js/stdlib/commit/f5d1741e71dac9dc829551c86109d18590515e01) - **chore:** address lint errors in `plot/unicode/stemleaf` [(#8066)](https://github.com/stdlib-js/stdlib/pull/8066) _(by Vara Rahul Rajana)_
2728
- [`5f2a8e1`](https://github.com/stdlib-js/stdlib/commit/5f2a8e17d446397ce2c93e683a3187ec63a38ded) - **chore:** address EditorConfig lint errors [(#7999)](https://github.com/stdlib-js/stdlib/pull/7999) _(by DUDHAT HEMIL PRAVINKUMAR)_
2829
- [`dbc0f86`](https://github.com/stdlib-js/stdlib/commit/dbc0f86a129ad6d1bc89b4dc6a30948f2ba8e85f) - **chore:** fix JavaScript lint errors [(#7952)](https://github.com/stdlib-js/stdlib/pull/7952) _(by Vara Rahul Rajana)_
2930
- [`c2cf04d`](https://github.com/stdlib-js/stdlib/commit/c2cf04db45596bd9a6fdde72df5c85e6cd233bc7) - **chore:** fix JavaScript lint errors [(#7747)](https://github.com/stdlib-js/stdlib/pull/7747) _(by Pradyumn Prasad, Athan Reines)_

CONTRIBUTORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Bruno Fenzl <[email protected]>
4242
Bryan Elee <[email protected]>
4343
Chinmay Joshi <[email protected]>
4444
Christopher Dambamuromo <[email protected]>
45+
DUDHAT HEMIL PRAVINKUMAR <[email protected]>
4546
4647
Daniel Hernandez Gomez <[email protected]>
4748
Daniel Killenberger <[email protected]>
@@ -65,6 +66,7 @@ Frank Kovacs <[email protected]>
6566
GK Bishnoi <[email protected]>
6667
GURU PRASAD SHARMA <[email protected]>
6768
69+
Gaurav Kaushik <[email protected]>
6870
Gautam Kaushik <[email protected]>
6971
Gautam sharma <[email protected]>
7072
@@ -179,6 +181,7 @@ Saurabh Singh <[email protected]>
179181
Seyyed Parsa Neshaei <[email protected]>
180182
Shabareesh Shetty <[email protected]>
181183
Shashank Shekhar Singh <[email protected]>
184+
Shaswata Panda <[email protected]>
182185
Shivam Ahir <[email protected]>
183186
184187
Shraddheya Shendre <[email protected]>
@@ -199,6 +202,7 @@ Tirtadwipa Manunggal <[email protected]>
199202
Tudor Pagu <[email protected]>
200203
Tufailahmed Bargir <[email protected]>
201204
Tushar Bhardwaj <[email protected]>
205+
Tyson Cung <[email protected]>
202206
Uday Kakade <[email protected]>
203207
Ujjwal Kirti <[email protected]>
204208
Utkarsh <http://[email protected]>

unicode/stemleaf/lib/format_data.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ function formatData( data, getValue ) {
5050

5151
// TODO: add support for `ndarray`-like interfaces
5252

53-
out = new Array( data.length );
53+
out = [];
5454
for ( i = 0; i < data.length; i++ ) {
5555
d = getValue( data[ i ], i );
5656
if ( isnan( d ) || isInfinite( d ) ) {
5757
continue;
5858
}
59-
out[ i ] = round( d );
59+
out.push( round( d ) );
6060
}
6161

6262
return out;

0 commit comments

Comments
 (0)