Skip to content

Commit 6c7e770

Browse files
committed
refactor: use strictEqual checks
1 parent a81b24f commit 6c7e770

File tree

44 files changed

+44
-44
lines changed

Some content is hidden

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

44 files changed

+44
-44
lines changed

lib/node_modules/@stdlib/string/base/capitalize/test/test.js

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

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

lib/node_modules/@stdlib/string/base/distances/test/test.js

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

3030
tape( 'main export is an object', function test( t ) {
3131
t.ok( true, __filename );
32-
t.equal( typeof ns, 'object', 'main export is an object' );
32+
t.strictEqual( typeof ns, 'object', 'main export is an object' );
3333
t.end();
3434
});
3535

lib/node_modules/@stdlib/string/base/left-pad/test/test.js

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

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

lib/node_modules/@stdlib/string/base/left-trim/test/test.js

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

3232
tape( 'main export is a function', function test( t ) {
3333
t.ok( true, __filename );
34-
t.equal( typeof ltrim, 'function', 'main export is a function' );
34+
t.strictEqual( typeof ltrim, 'function', 'main export is a function' );
3535
t.end();
3636
});
3737

lib/node_modules/@stdlib/string/base/left-trim/test/test.main.js

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

3737
tape( 'main export is a function', opts, function test( t ) {
3838
t.ok( true, __filename );
39-
t.equal( typeof ltrim, 'function', 'main export is a function' );
39+
t.strictEqual( typeof ltrim, 'function', 'main export is a function' );
4040
t.end();
4141
});
4242

lib/node_modules/@stdlib/string/base/left-trim/test/test.polyfill.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var ltrim = require( './../lib/polyfill.js' );
2828

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

lib/node_modules/@stdlib/string/base/lowercase/test/test.js

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

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

lib/node_modules/@stdlib/string/base/repeat/test/test.js

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

3232
tape( 'main export is a function', function test( t ) {
3333
t.ok( true, __filename );
34-
t.equal( typeof repeat, 'function', 'main export is a function' );
34+
t.strictEqual( typeof repeat, 'function', 'main export is a function' );
3535
t.end();
3636
});
3737

lib/node_modules/@stdlib/string/base/repeat/test/test.main.js

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

3737
tape( 'main export is a function', opts, function test( t ) {
3838
t.ok( true, __filename );
39-
t.equal( typeof repeat, 'function', 'main export is a function' );
39+
t.strictEqual( typeof repeat, 'function', 'main export is a function' );
4040
t.end();
4141
});
4242

lib/node_modules/@stdlib/string/base/repeat/test/test.polyfill.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var repeat = require( './../lib/polyfill.js' );
2828

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

0 commit comments

Comments
 (0)