Skip to content

Commit 48a9d28

Browse files
committed
Auto-generated commit
1 parent 6ef11ce commit 48a9d28

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

.github/.keepalive

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2025-08-18T01:05:05.267Z

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-08-18)
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
- [`b8c41df`](https://github.com/stdlib-js/stdlib/commit/b8c41df78cd2cdc9cd3c3c6b223759d32f4f6e14) - **docs:** update related packages sections [(#3915)](https://github.com/stdlib-js/stdlib/pull/3915) _(by stdlib-bot)_
1718

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ Ruthwik Chikoti <145591715+ruthwikchikoti@users.noreply.github.com>
166166
Ryan Seal <splrk@users.noreply.github.com>
167167
Rylan Yang <137365285+rylany27@users.noreply.github.com>
168168
SAHIL KUMAR <168997976+sahilk45@users.noreply.github.com>
169+
SAUJANYA MAGARDE <162047941+SaujanyaMagarde@users.noreply.github.com>
169170
SHIVAM YADAV <120725381+Shivam-1827@users.noreply.github.com>
170171
Sachin Raj <120590207+schnrj@users.noreply.github.com>
171172
Sahil Goyal <87982509+sahil20021008@users.noreply.github.com>

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

test/test.main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ tape( 'the returned regular expression matches a semver version string', functio
5353
'1.0.0+exp.sha.5114f85'
5454
];
5555
for ( i = 0; i < values.length; i++ ) {
56-
t.equal( RE.test( values[i] ), true, 'returns expected value when provided '+values[i] );
56+
t.strictEqual( RE.test( values[i] ), true, 'returns expected value when provided '+values[i] );
5757
}
5858
t.end();
5959
});
@@ -77,7 +77,7 @@ tape( 'the returned regular expression does not match a non-semver version strin
7777
];
7878

7979
for ( i = 0; i < values.length; i++ ) {
80-
t.equal( RE.test( values[i] ), false, 'returns expected value when provided '+values[i] );
80+
t.strictEqual( RE.test( values[i] ), false, 'returns expected value when provided '+values[i] );
8181
}
8282
t.end();
8383
});

test/test.regexp.js

Lines changed: 3 additions & 3 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

@@ -52,7 +52,7 @@ tape( 'the regular expression matches valid semantic version strings', function
5252
];
5353

5454
for ( i = 0; i < values.length; i++ ) {
55-
t.equal( RE.test( values[i] ), true, 'returns expected value when provided '+values[i] );
55+
t.strictEqual( RE.test( values[i] ), true, 'returns expected value when provided '+values[i] );
5656
}
5757
t.end();
5858
});
@@ -74,7 +74,7 @@ tape( 'the regular expression does not match invalid semantic version strings',
7474
];
7575

7676
for ( i = 0; i < values.length; i++ ) {
77-
t.equal( RE.test( values[i] ), false, 'returns expected value when provided '+values[i] );
77+
t.strictEqual( RE.test( values[i] ), false, 'returns expected value when provided '+values[i] );
7878
}
7979
t.end();
8080
});

0 commit comments

Comments
 (0)