Skip to content

Commit 0e39133

Browse files
committed
chore: use strictEqual checks and resolve lint errors
1 parent 10c6209 commit 0e39133

File tree

54 files changed

+46
-56
lines changed

Some content is hidden

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

54 files changed

+46
-56
lines changed

lib/node_modules/@stdlib/iter/concat/test/test.js

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

3434
tape( 'main export is a function', function test( t ) {
3535
t.ok( true, __filename );
36-
t.equal( typeof iterConcat, 'function', 'main export is a function' );
36+
t.strictEqual( typeof iterConcat, 'function', 'main export is a function' );
3737
t.end();
3838
});
3939

lib/node_modules/@stdlib/iter/constant/test/test.js

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

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

lib/node_modules/@stdlib/iter/counter/test/test.js

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

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

lib/node_modules/@stdlib/iter/datespace/test/test.js

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

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

lib/node_modules/@stdlib/iter/dedupe-by/test/test.js

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

3434
tape( 'main export is a function', function test( t ) {
3535
t.ok( true, __filename );
36-
t.equal( typeof iterDedupeBy, 'function', 'main export is a function' );
36+
t.strictEqual( typeof iterDedupeBy, 'function', 'main export is a function' );
3737
t.end();
3838
});
3939

lib/node_modules/@stdlib/iter/dedupe/test/test.js

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

3434
tape( 'main export is a function', function test( t ) {
3535
t.ok( true, __filename );
36-
t.equal( typeof iterDedupe, 'function', 'main export is a function' );
36+
t.strictEqual( typeof iterDedupe, 'function', 'main export is a function' );
3737
t.end();
3838
});
3939

lib/node_modules/@stdlib/iter/empty/test/test.js

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

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

lib/node_modules/@stdlib/iter/fill/test/test.js

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

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

lib/node_modules/@stdlib/iter/filter-map/test/test.js

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

3434
tape( 'main export is a function', function test( t ) {
3535
t.ok( true, __filename );
36-
t.equal( typeof iterFilterMap, 'function', 'main export is a function' );
36+
t.strictEqual( typeof iterFilterMap, 'function', 'main export is a function' );
3737
t.end();
3838
});
3939

lib/node_modules/@stdlib/iter/filter/test/test.js

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

3434
tape( 'main export is a function', function test( t ) {
3535
t.ok( true, __filename );
36-
t.equal( typeof iterFilter, 'function', 'main export is a function' );
36+
t.strictEqual( typeof iterFilter, 'function', 'main export is a function' );
3737
t.end();
3838
});
3939

0 commit comments

Comments
 (0)