Skip to content

Commit b734544

Browse files
committed
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var isEven = require( './../lib' );
3232

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var isfinite = require( './../lib' );
3232

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

lib/node_modules/@stdlib/math/base/assert/is-finite/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var opts = {
4141

4242
tape( 'main export is a function', opts, function test( t ) {
4343
t.ok( true, __filename );
44-
t.equal( typeof isfinite, 'function', 'main export is a function' );
44+
t.strictEqual( typeof isfinite, 'function', 'main export is a function' );
4545
t.end();
4646
});
4747

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var isfinitef = require( './../lib' );
3232

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

lib/node_modules/@stdlib/math/base/assert/is-finitef/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var opts = {
4141

4242
tape( 'main export is a function', opts, function test( t ) {
4343
t.ok( true, __filename );
44-
t.equal( typeof isfinitef, 'function', 'main export is a function' );
44+
t.strictEqual( typeof isfinitef, 'function', 'main export is a function' );
4545
t.end();
4646
});
4747

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var isInfinite = require( './../lib' );
3030

3131
tape( 'main export is a function', function test( t ) {
3232
t.ok( true, __filename );
33-
t.equal( typeof isInfinite, 'function', 'main export is a function' );
33+
t.strictEqual( typeof isInfinite, 'function', 'main export is a function' );
3434
t.end();
3535
});
3636

lib/node_modules/@stdlib/math/base/assert/is-infinite/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ var opts = {
3939

4040
tape( 'main export is a function', opts, function test( t ) {
4141
t.ok( true, __filename );
42-
t.equal( typeof isInfinite, 'function', 'main export is a function' );
42+
t.strictEqual( typeof isInfinite, 'function', 'main export is a function' );
4343
t.end();
4444
});
4545

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var isInfinitef = require( './../lib' );
3030

3131
tape( 'main export is a function', function test( t ) {
3232
t.ok( true, __filename );
33-
t.equal( typeof isInfinitef, 'function', 'main export is a function' );
33+
t.strictEqual( typeof isInfinitef, 'function', 'main export is a function' );
3434
t.end();
3535
});
3636

0 commit comments

Comments
 (0)