Skip to content

Commit d3f98db

Browse files
committed
Auto-generated commit
1 parent ecb7dd2 commit d3f98db

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed

.github/.keepalive

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2025-09-15T00:33:24.877Z

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

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

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`f344466`](https://github.com/stdlib-js/stdlib/commit/f344466c6dcfb8f52d7f3148acaadd52772938da) - **test:** use .strictEqual() instead of .equal() and fix lint errors _(by Philipp Burckhardt)_
1516
- [`77867ac`](https://github.com/stdlib-js/stdlib/commit/77867ac1767a186023f633dea30ddf860962aaed) - **docs:** remove trailing whitespace _(by Philipp Burckhardt)_
1617

1718
</details>

CONTRIBUTORS

Lines changed: 6 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
@@ -166,6 +168,7 @@ Ruthwik Chikoti <[email protected]>
166168
Ryan Seal <[email protected]>
167169
Rylan Yang <[email protected]>
168170
SAHIL KUMAR <[email protected]>
171+
SAUJANYA MAGARDE <[email protected]>
169172
SHIVAM YADAV <[email protected]>
170173
Sachin Raj <[email protected]>
171174
Sahil Goyal <[email protected]>
@@ -178,6 +181,7 @@ Saurabh Singh <[email protected]>
178181
Seyyed Parsa Neshaei <[email protected]>
179182
Shabareesh Shetty <[email protected]>
180183
Shashank Shekhar Singh <[email protected]>
184+
Shaswata Panda <[email protected]>
181185
Shivam Ahir <[email protected]>
182186
183187
Shraddheya Shendre <[email protected]>
@@ -188,6 +192,7 @@ Sivam Das <[email protected]>
188192
Snehil Shah <[email protected]>
189193
Soumajit Chatterjee <[email protected]>
190194
Spandan Barve <[email protected]>
195+
Srinivas Batthula <[email protected]>
191196
Stephannie Jiménez Gacha <[email protected]>
192197
Suhaib Ilahi <[email protected]>
193198
Suraj Kumar <[email protected]>
@@ -197,6 +202,7 @@ Tirtadwipa Manunggal <[email protected]>
197202
Tudor Pagu <[email protected]>
198203
Tufailahmed Bargir <[email protected]>
199204
Tushar Bhardwaj <[email protected]>
205+
Tyson Cung <[email protected]>
200206
Uday Kakade <[email protected]>
201207
Ujjwal Kirti <[email protected]>
202208
Utkarsh <http://[email protected]>

test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ tape( 'main export is a function', function test( t ) {
3434
});
3535

3636
tape( 'attached to the main export is a regular expression', function test( t ) {
37-
t.equal( isRegExp( reBasenameWindows.REGEXP ), true, 'exports a regular expression' );
37+
t.strictEqual( isRegExp( reBasenameWindows.REGEXP ), true, 'exports a regular expression' );
3838
t.end();
3939
});

0 commit comments

Comments
 (0)