Skip to content

Commit b734544

Browse files
committedJul 24, 2023
refactor: use strictEqual checks
1 parent 6c7e770 commit b734544

File tree

379 files changed

+382
-382
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

379 files changed

+382
-382
lines changed
 

‎lib/node_modules/@stdlib/math/base/assert/is-composite/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var isComposite = require( './../lib' );
3434

3535
tape( 'main export is a function', function test( t ) {
3636
t.ok( true, __filename );
37-
t.equal( typeof isComposite, 'function', 'main export is a function' );
37+
t.strictEqual( typeof isComposite, 'function', 'main export is a function' );
3838
t.end();
3939
});
4040

‎lib/node_modules/@stdlib/math/base/assert/is-coprime/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var isCoprime = require( './../lib' );
3232

3333
tape( 'main export is a function', function test( t ) {
3434
t.ok( true, __filename );
35-
t.equal( typeof isCoprime, 'function', 'main export is a function' );
35+
t.strictEqual( typeof isCoprime, 'function', 'main export is a function' );
3636
t.end();
3737
});
3838

0 commit comments

Comments
 (0)