Skip to content

Commit 8632295

Browse files
committed
Auto-generated commit
1 parent ad67e2a commit 8632295

File tree

6 files changed

+52
-11
lines changed

6 files changed

+52
-11
lines changed

.github/.keepalive

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

.gitignore

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,8 @@ jsconfig.json
188188
# Other editor files #
189189
######################
190190
.idea/
191-
192-
# Cursor #
193-
##########
194191
.cursorignore
192+
193+
# AI coding agents #
194+
####################
195+
claude.md

CHANGELOG.md

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

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2025-09-07)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`0d7c7b1`](https://github.com/stdlib-js/stdlib/commit/0d7c7b148724969c79eef40805f7df7c5a61b32c) - **docs:** pass in proper argument in TSDoc example code for `random/array` packages _(by Philipp Burckhardt)_
16+
- [`54da286`](https://github.com/stdlib-js/stdlib/commit/54da28610f5ee6b2aa181addb1775d32f79043ee) - **test:** use .strictEqual() instead of .equal() and fix lint errors _(by Philipp Burckhardt)_
17+
18+
</details>
19+
20+
</section>
21+
22+
<!-- /.commits -->
23+
24+
<section class="contributors">
25+
26+
### Contributors
27+
28+
A total of 1 person contributed to this release. Thank you to this contributor:
29+
30+
- Philipp Burckhardt
31+
32+
</section>
33+
34+
<!-- /.contributors -->
35+
36+
</section>
37+
38+
<!-- /.release -->
39+
540
<section class="release" id="v0.2.1">
641

742
## 0.2.1 (2024-02-25)

CONTRIBUTORS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Abhishek G <[email protected]>
1313
Abhishek Jain <[email protected]>
1414
Adarsh Palaskar <[email protected]>
1515
Aditya Sapra <[email protected]>
16+
Aditya Singh <[email protected]>
1617
Ahmed Atwa <[email protected]>
1718
Ahmed Kashkoush <[email protected]>
1819
Ahmed Khaled <[email protected]>
@@ -41,6 +42,7 @@ Bruno Fenzl <[email protected]>
4142
Bryan Elee <[email protected]>
4243
Chinmay Joshi <[email protected]>
4344
Christopher Dambamuromo <[email protected]>
45+
DUDHAT HEMIL PRAVINKUMAR <[email protected]>
4446
4547
Daniel Hernandez Gomez <[email protected]>
4648
Daniel Killenberger <[email protected]>
@@ -64,6 +66,7 @@ Frank Kovacs <[email protected]>
6466
GK Bishnoi <[email protected]>
6567
GURU PRASAD SHARMA <[email protected]>
6668
69+
Gaurav Kaushik <[email protected]>
6770
Gautam Kaushik <[email protected]>
6871
Gautam sharma <[email protected]>
6972
@@ -121,6 +124,7 @@ Muhammad Haris <[email protected]>
121124
Muhammad Taaha Tariq <[email protected]>
122125
Muhmmad Saad <[email protected]>
123126
NEEKUorAAYUSH <[email protected]>
127+
Nakul Krishnakumar <[email protected]>
124128
Naresh Jagadeesan <[email protected]>
125129
Naveen Kumar <[email protected]>
126130
Neeraj Pathak <[email protected]>
@@ -164,6 +168,7 @@ Ruthwik Chikoti <[email protected]>
164168
Ryan Seal <[email protected]>
165169
Rylan Yang <[email protected]>
166170
SAHIL KUMAR <[email protected]>
171+
SAUJANYA MAGARDE <[email protected]>
167172
SHIVAM YADAV <[email protected]>
168173
Sachin Raj <[email protected]>
169174
Sahil Goyal <[email protected]>
@@ -186,6 +191,7 @@ Sivam Das <[email protected]>
186191
Snehil Shah <[email protected]>
187192
Soumajit Chatterjee <[email protected]>
188193
Spandan Barve <[email protected]>
194+
Srinivas Batthula <[email protected]>
189195
Stephannie Jiménez Gacha <[email protected]>
190196
Suhaib Ilahi <[email protected]>
191197
Suraj Kumar <[email protected]>

docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ interface Random extends PRNG {
189189
* var x = zeros( 10, 'float64' );
190190
* // returns <Float64Array>
191191
*
192-
* var out = cauchy( 2.0, 5.0, out );
192+
* var out = cauchy( 2.0, 5.0, x );
193193
* // returns <Float64Array>
194194
*
195195
* var bool = ( out === x );

test/test.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,31 +44,31 @@ tape( 'attached to the main export is a `factory` method', function test( t ) {
4444
});
4545

4646
tape( 'attached to the main export is the underlying PRNG', function test( t ) {
47-
t.equal( typeof random.PRNG, 'function', 'has property' );
47+
t.strictEqual( typeof random.PRNG, 'function', 'has property' );
4848
t.end();
4949
});
5050

5151
tape( 'attached to the main export is the generator seed', function test( t ) {
52-
t.equal( isUint32Array( random.seed ), true, 'has property' );
52+
t.strictEqual( isUint32Array( random.seed ), true, 'has property' );
5353
t.end();
5454
});
5555

5656
tape( 'attached to the main export is the generator seed length', function test( t ) {
57-
t.equal( typeof random.seedLength, 'number', 'has property' );
57+
t.strictEqual( typeof random.seedLength, 'number', 'has property' );
5858
t.end();
5959
});
6060

6161
tape( 'attached to the main export is the generator state', function test( t ) {
62-
t.equal( isUint32Array( random.state ), true, 'has property' );
62+
t.strictEqual( isUint32Array( random.state ), true, 'has property' );
6363
t.end();
6464
});
6565

6666
tape( 'attached to the main export is the generator state length', function test( t ) {
67-
t.equal( typeof random.stateLength, 'number', 'has property' );
67+
t.strictEqual( typeof random.stateLength, 'number', 'has property' );
6868
t.end();
6969
});
7070

7171
tape( 'attached to the main export is the generator state size', function test( t ) {
72-
t.equal( typeof random.byteLength, 'number', 'has property' );
72+
t.strictEqual( typeof random.byteLength, 'number', 'has property' );
7373
t.end();
7474
});

0 commit comments

Comments
 (0)