Skip to content

Commit 31ec014

Browse files
committed
Auto-generated commit
1 parent 843a92e commit 31ec014

File tree

5 files changed

+32
-17
lines changed

5 files changed

+32
-17
lines changed

.github/.keepalive

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-08-11T01:21:34.066Z
1+
2025-09-15T00:45:58.676Z

.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: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,16 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-08-11)
7+
## Unreleased (2025-09-15)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`11581aa`](https://github.com/stdlib-js/stdlib/commit/11581aaca8c3cb824cbb92c0c0f80e76890bdb20) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
16+
- [`f9651e6`](https://github.com/stdlib-js/stdlib/commit/f9651e6411b4ebd3c95dcc6b46c02e6d5be009fa) - **test:** use .strictEqual() instead of .equal() and fix lint errors _(by Philipp Burckhardt)_
1517
- [`31fd427`](https://github.com/stdlib-js/stdlib/commit/31fd42744ec5d7073041f97c6f72350b8005c0fc) - **style:** remove unwanted empty lines _(by Philipp Burckhardt)_
1618

1719
</details>

CONTRIBUTORS

Lines changed: 8 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]>
@@ -176,6 +181,7 @@ Saurabh Singh <[email protected]>
176181
Seyyed Parsa Neshaei <[email protected]>
177182
Shabareesh Shetty <[email protected]>
178183
Shashank Shekhar Singh <[email protected]>
184+
Shaswata Panda <[email protected]>
179185
Shivam Ahir <[email protected]>
180186
181187
Shraddheya Shendre <[email protected]>
@@ -186,6 +192,7 @@ Sivam Das <[email protected]>
186192
Snehil Shah <[email protected]>
187193
Soumajit Chatterjee <[email protected]>
188194
Spandan Barve <[email protected]>
195+
Srinivas Batthula <[email protected]>
189196
Stephannie Jiménez Gacha <[email protected]>
190197
Suhaib Ilahi <[email protected]>
191198
Suraj Kumar <[email protected]>
@@ -195,6 +202,7 @@ Tirtadwipa Manunggal <[email protected]>
195202
Tudor Pagu <[email protected]>
196203
Tufailahmed Bargir <[email protected]>
197204
Tushar Bhardwaj <[email protected]>
205+
Tyson Cung <[email protected]>
198206
Uday Kakade <[email protected]>
199207
Ujjwal Kirti <[email protected]>
200208
Utkarsh <http://[email protected]>

test/test.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -40,20 +40,20 @@ tape( 'the function tests for a generic number array having only positive intege
4040
var arr;
4141

4242
arr = [ 5.0, new Number( 5 ), 1.0 ];
43-
t.equal( isPositiveIntegerArray( arr ), true, 'returns true' );
43+
t.strictEqual( isPositiveIntegerArray( arr ), true, 'returns expected value' );
4444

4545
arr = [ 5.0, '3', null ];
46-
t.equal( isPositiveIntegerArray( arr ), false, 'returns false' );
46+
t.strictEqual( isPositiveIntegerArray( arr ), false, 'returns expected value' );
4747

4848
arr = {
4949
'length': 2,
5050
'0': 5,
5151
'1': 1
5252
};
53-
t.equal( isPositiveIntegerArray( arr ), true, 'returns true' );
53+
t.strictEqual( isPositiveIntegerArray( arr ), true, 'returns expected value' );
5454

5555
arr = new Int32Array( [ 5, 2, 0 ] );
56-
t.equal( isPositiveIntegerArray( arr ), false, 'returns false' );
56+
t.strictEqual( isPositiveIntegerArray( arr ), false, 'returns expected value' );
5757

5858
t.end();
5959
});
@@ -62,20 +62,20 @@ tape( 'the function provides a method to test for an array-like object containin
6262
var arr;
6363

6464
arr = [ 5.0, 1.0 ];
65-
t.equal( isPositiveIntegerArray.primitives( arr ), true, 'returns true' );
65+
t.strictEqual( isPositiveIntegerArray.primitives( arr ), true, 'returns expected value' );
6666

6767
arr = [ new Number( 5 ), 1.0, 1.0 ];
68-
t.equal( isPositiveIntegerArray.primitives( arr ), false, 'returns false' );
68+
t.strictEqual( isPositiveIntegerArray.primitives( arr ), false, 'returns expected value' );
6969

7070
arr = {
7171
'length': 2,
7272
'0': 5,
7373
'1': 1
7474
};
75-
t.equal( isPositiveIntegerArray.primitives( arr ), true, 'returns true' );
75+
t.strictEqual( isPositiveIntegerArray.primitives( arr ), true, 'returns expected value' );
7676

7777
arr = new Int16Array( [ 5, 2, 1 ] );
78-
t.equal( isPositiveIntegerArray.primitives( arr ), true, 'returns true' );
78+
t.strictEqual( isPositiveIntegerArray.primitives( arr ), true, 'returns expected value' );
7979

8080
t.end();
8181
});
@@ -84,20 +84,20 @@ tape( 'the function provides a method to test for an array-like object containin
8484
var arr;
8585

8686
arr = [ new Number( 5 ), new Number( 2 ) ];
87-
t.equal( isPositiveIntegerArray.objects( arr ), true, 'returns true' );
87+
t.strictEqual( isPositiveIntegerArray.objects( arr ), true, 'returns expected value' );
8888

8989
arr = [ 5.0, 1.0, 1.0 ];
90-
t.equal( isPositiveIntegerArray.objects( arr ), false, 'returns false' );
90+
t.strictEqual( isPositiveIntegerArray.objects( arr ), false, 'returns expected value' );
9191

9292
arr = {
9393
'length': 2,
9494
'0': new Number( 5 ),
9595
'1': new Number( 1 )
9696
};
97-
t.equal( isPositiveIntegerArray.objects( arr ), true, 'returns true' );
97+
t.strictEqual( isPositiveIntegerArray.objects( arr ), true, 'returns expected value' );
9898

9999
arr = new Uint32Array( [ 5, 1 ] );
100-
t.equal( isPositiveIntegerArray.objects( arr ), false, 'returns false' );
100+
t.strictEqual( isPositiveIntegerArray.objects( arr ), false, 'returns expected value' );
101101

102102
t.end();
103103
});

0 commit comments

Comments
 (0)