Skip to content

Commit 41f3c4d

Browse files
committed
Auto-generated commit
1 parent aa63fa6 commit 41f3c4d

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

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-12)
7+
## Unreleased (2025-09-06)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`8b0b780`](https://github.com/stdlib-js/stdlib/commit/8b0b78084a2ff5d7a76ba3c5945b13d7f0906f4f) - **docs:** fix TypeScript declaration linting errors _(by Philipp Burckhardt)_
16+
- [`f344466`](https://github.com/stdlib-js/stdlib/commit/f344466c6dcfb8f52d7f3148acaadd52772938da) - **test:** use .strictEqual() instead of .equal() and fix lint errors _(by Philipp Burckhardt)_
1517
- [`77867ac`](https://github.com/stdlib-js/stdlib/commit/77867ac1767a186023f633dea30ddf860962aaed) - **docs:** remove trailing whitespace _(by Philipp Burckhardt)_
1618

1719
</details>

CONTRIBUTORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Bruno Fenzl <brunofenzl@gmail.com>
4242
Bryan Elee <rxbryn@gmail.com>
4343
Chinmay Joshi <86140365+JawHawk@users.noreply.github.com>
4444
Christopher Dambamuromo <chridam@gmail.com>
45+
DUDHAT HEMIL PRAVINKUMAR <138382078+Hemil36@users.noreply.github.com>
4546
Dan Rose <danoftheroses@gmail.com>
4647
Daniel Hernandez Gomez <156333015+dhernandeez13@users.noreply.github.com>
4748
Daniel Killenberger <daniel.killenberger@gmail.com>
@@ -166,6 +167,7 @@ Ruthwik Chikoti <145591715+ruthwikchikoti@users.noreply.github.com>
166167
Ryan Seal <splrk@users.noreply.github.com>
167168
Rylan Yang <137365285+rylany27@users.noreply.github.com>
168169
SAHIL KUMAR <168997976+sahilk45@users.noreply.github.com>
170+
SAUJANYA MAGARDE <162047941+SaujanyaMagarde@users.noreply.github.com>
169171
SHIVAM YADAV <120725381+Shivam-1827@users.noreply.github.com>
170172
Sachin Raj <120590207+schnrj@users.noreply.github.com>
171173
Sahil Goyal <87982509+sahil20021008@users.noreply.github.com>
@@ -188,6 +190,7 @@ Sivam Das <100067002+Sivam2313@users.noreply.github.com>
188190
Snehil Shah <snehilshah.989@gmail.com>
189191
Soumajit Chatterjee <121816890+soumajit23@users.noreply.github.com>
190192
Spandan Barve <contact@marsian.dev>
193+
Srinivas Batthula <srinivasbatthula05.official@gmail.com>
191194
Stephannie Jiménez Gacha <steff456@hotmail.com>
192195
Suhaib Ilahi <suhaib.elahi87@gmail.com>
193196
Suraj Kumar <125961509+kumarsuraj212003@users.noreply.github.com>

docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ interface ReDirnamePosix {
3838
* Regular expression to capture a POSIX path dirname.
3939
*
4040
* @example
41-
* var ext = reExtnamePosix.REGEXP.exec( 'index.js' )[ 1 ];
41+
* var ext = reDirnamePosix.REGEXP.exec( 'index.js' )[ 1 ];
4242
* // returns '.js'
4343
*/
4444
REGEXP: RegExp;

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( reDirnamePosix.REGEXP ), true, 'exports a regular expression' );
37+
t.strictEqual( isRegExp( reDirnamePosix.REGEXP ), true, 'exports a regular expression' );
3838
t.end();
3939
});

test/test.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ tape( 'the function returns a regular expression that captures POSIX path dirnam
8181

8282
for ( i = 0; i < values.length; i++ ) {
8383
dir = RE.exec( values[ i ] )[ 1 ];
84-
t.equal( dir, expected[ i ], values[ i ] );
84+
t.strictEqual( dir, expected[ i ], values[ i ] );
8585
}
8686
t.end();
8787
});

test/test.regexp.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var RE = require( './../lib/regexp.js' );
2828

2929
tape( 'main export is a regular expression', function test( t ) {
3030
t.ok( true, __filename );
31-
t.equal( RE instanceof RegExp, true, 'main export is a regular expression' );
31+
t.strictEqual( RE instanceof RegExp, true, 'main export is a regular expression' );
3232
t.end();
3333
});
3434

@@ -78,7 +78,7 @@ tape( 'the regular expression captures POSIX path dirnames', function test( t )
7878

7979
for ( i = 0; i < values.length; i++ ) {
8080
dir = RE.exec( values[ i ] )[ 1 ];
81-
t.equal( dir, expected[ i ], values[ i ] );
81+
t.strictEqual( dir, expected[ i ], values[ i ] );
8282
}
8383
t.end();
8484
});

0 commit comments

Comments
 (0)