Skip to content

Commit 9058af0

Browse files
committed
Auto-generated commit
1 parent f4a5ecd commit 9058af0

File tree

6 files changed

+23
-6
lines changed

6 files changed

+23
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
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-19)
88

99
<section class="features">
1010

@@ -36,6 +36,7 @@
3636

3737
<details>
3838

39+
- [`26142f9`](https://github.com/stdlib-js/stdlib/commit/26142f9229d2160cbb5a0defb26f63d50200d850) - **docs:** update REPL namespace documentation [(#8103)](https://github.com/stdlib-js/stdlib/pull/8103) _(by stdlib-bot)_
3940
- [`bea5b86`](https://github.com/stdlib-js/stdlib/commit/bea5b867c7905e4fb8f1648e8fe8acc436f55e14) - **docs:** update REPL namespace documentation [(#8064)](https://github.com/stdlib-js/stdlib/pull/8064) _(by stdlib-bot)_
4041
- [`fe269e2`](https://github.com/stdlib-js/stdlib/commit/fe269e2a7c2ae9bff3868d4c8a7fce1cb64e2a88) - **docs:** update REPL namespace documentation [(#8040)](https://github.com/stdlib-js/stdlib/pull/8040) _(by stdlib-bot)_
4142
- [`c940d58`](https://github.com/stdlib-js/stdlib/commit/c940d5871c3e892cd67dd8fa2b1dbadd87465733) - **docs:** update REPL namespace documentation [(#7903)](https://github.com/stdlib-js/stdlib/pull/7903) _(by stdlib-bot)_

CONTRIBUTORS

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Ahmed Khaled <[email protected]>
2020
Aksshay Balasubramanian <[email protected]>
2121
Aleksandr <[email protected]>
2222
Ali Salesi <[email protected]>
23-
AlyAbdelmoneim <[email protected]>
23+
Aly Abdelmoneim <[email protected]>
2424
Aman Bhansali <[email protected]>
2525
AmanBhadkariya <[email protected]>
2626
Amisha Chhajed <[email protected]>
@@ -29,6 +29,7 @@ Anmol Sah <[email protected]>
2929
Annamalai Prabu <[email protected]>
3030
Anshu Kumar <[email protected]>
3131
Anshu Kumar <[email protected]>
32+
Anshuman Singh <[email protected]>
3233
Anudeep Sanapala <[email protected]>
3334
Arihant Pal <[email protected]>
3435
Aryan Bhirud <[email protected]>
@@ -137,6 +138,7 @@ Nourhan Hasan <[email protected]>
137138
Ognjen Jevremović <[email protected]>
138139
Oneday12323 <[email protected]>
139140
Ori Miles <[email protected]>
141+
Payal Goswami <[email protected]>
140142
Philipp Burckhardt <[email protected]>
141143
Pierre Forstmann <[email protected]>
142144
Pradyumn Prasad <[email protected]>
@@ -178,6 +180,7 @@ Sanchay Ketan Sinha <[email protected]>
178180
Sarthak Paandey <[email protected]>
179181
Satyajeet Chavan <[email protected]>
180182
Saurabh Singh <[email protected]>
183+
Seth-Banker <[email protected]>
181184
Seyyed Parsa Neshaei <[email protected]>
182185
Shabareesh Shetty <[email protected]>
183186
Shashank Shekhar Singh <[email protected]>
@@ -202,6 +205,7 @@ Tirtadwipa Manunggal <[email protected]>
202205
Tudor Pagu <[email protected]>
203206
Tufailahmed Bargir <[email protected]>
204207
Tushar Bhardwaj <[email protected]>
208+
Tyson Cung <[email protected]>
205209
Uday Kakade <[email protected]>
206210
Ujjwal Kirti <[email protected]>
207211
Utkarsh <http://[email protected]>

data/data.csv

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2784,6 +2784,18 @@ curryRight,"function add( x, y ) { return x + y; };\nvar f = curryRight( add );\
27842784
cwd,"var dir = cwd()\n"
27852785
DALE_CHALL_NEW,"var list = DALE_CHALL_NEW()\n"
27862786
datasets,"var out = datasets( 'MONTH_NAMES_EN' )\nvar opts = { 'data': 'cities' };\nout = datasets( 'MINARD_NAPOLEONS_MARCH', opts )\n"
2787+
DataType,"var dt = new DataType( 'float64' );\ndt.byteLength\n"
2788+
DataType.name,"DataType.name\n"
2789+
DataType.prototype.alignment,"var dt = new DataType( 'float64' );\ndt.alignment\n"
2790+
DataType.prototype.byteLength,"var dt = new DataType( 'float64' );\ndt.byteLength\n"
2791+
DataType.prototype.byteOrder,"var dt = new DataType( 'float64' );\ndt.byteOrder\n"
2792+
DataType.prototype.char,"var dt = new DataType( 'float64' );\ndt.char\n"
2793+
DataType.prototype.description,"var dt = new DataType( 'float64' );\ndt.description\n"
2794+
DataType.prototype.enum,"var dt = new DataType( 'float64' );\ndt.enum\n"
2795+
DataType.prototype.value,"var dt = new DataType( 'float64' );\ndt.value\n"
2796+
DataType.prototype.toJSON,"var dt = new DataType( 'float64' );\ndt.toJSON()\n"
2797+
DataType.prototype.toString,"var dt = new DataType( 'float64' );\ndt.toString()\n"
2798+
DataType.prototype.valueOf,"var dt = new DataType( 'float64' );\ndt.valueOf()\n"
27872799
DataView,"var buf = new ArrayBuffer( 5 )\nvar dv = new DataView( buf )\n"
27882800
DataView.prototype.buffer,"var buf1 = new ArrayBuffer( 5 );\nvar dv = new DataView( buf1 );\nvar buf2 = dv.buffer\nvar b = ( buf1 === buf2 )\n"
27892801
DataView.prototype.byteLength,"var buf = new ArrayBuffer( 5 );\nvar dv = new DataView( buf );\ndv.byteLength\n"

data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

dist/index.js

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

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)