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

+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

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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

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

+1-1
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 isInfinitef, 'function', 'main export is a function' );
42+
t.strictEqual( typeof isInfinitef, 'function', 'main export is a function' );
4343
t.end();
4444
});
4545

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

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

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

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

+1-1
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 isInteger, 'function', 'main export is a function' );
44+
t.strictEqual( typeof isInteger, 'function', 'main export is a function' );
4545
t.end();
4646
});
4747

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var isnan = require( './../lib' );
2929

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var opts = {
3838

3939
tape( 'main export is a function', opts, function test( t ) {
4040
t.ok( true, __filename );
41-
t.equal( typeof isnan, 'function', 'main export is a function' );
41+
t.strictEqual( typeof isnan, 'function', 'main export is a function' );
4242
t.end();
4343
});
4444

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var isnanf = require( './../lib' );
2929

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var opts = {
3838

3939
tape( 'main export is a function', opts, function test( t ) {
4040
t.ok( true, __filename );
41-
t.equal( typeof isnanf, 'function', 'main export is a function' );
41+
t.strictEqual( typeof isnanf, 'function', 'main export is a function' );
4242
t.end();
4343
});
4444

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var isNegativeFinite = require( './../lib' );
2929

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

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

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

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var isNegativeZero = require( './../lib' );
2828

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var opts = {
3737

3838
tape( 'main export is a function', opts, function test( t ) {
3939
t.ok( true, __filename );
40-
t.equal( typeof isNegativeZero, 'function', 'main export is a function' );
40+
t.strictEqual( typeof isNegativeZero, 'function', 'main export is a function' );
4141
t.end();
4242
});
4343

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var isNegativeZerof = require( './../lib' );
2828

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var opts = {
3737

3838
tape( 'main export is a function', opts, function test( t ) {
3939
t.ok( true, __filename );
40-
t.equal( typeof isNegativeZerof, 'function', 'main export is a function' );
40+
t.strictEqual( typeof isNegativeZerof, 'function', 'main export is a function' );
4141
t.end();
4242
});
4343

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var isNonNegativeFinite = require( './../lib' );
3030

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

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

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

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var isNonPositiveFinite = require( './../lib' );
3030

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

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

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

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

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

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

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var isPositiveFinite = require( './../lib' );
3030

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

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

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

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var isPositiveZero = require( './../lib' );
2828

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var opts = {
3737

3838
tape( 'main export is a function', opts, function test( t ) {
3939
t.ok( true, __filename );
40-
t.equal( typeof isPositiveZero, 'function', 'main export is a function' );
40+
t.strictEqual( typeof isPositiveZero, 'function', 'main export is a function' );
4141
t.end();
4242
});
4343

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var isPositiveZerof = require( './../lib' );
2828

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var opts = {
3737

3838
tape( 'main export is a function', opts, function test( t ) {
3939
t.ok( true, __filename );
40-
t.equal( typeof isPositiveZerof, 'function', 'main export is a function' );
40+
t.strictEqual( typeof isPositiveZerof, 'function', 'main export is a function' );
4141
t.end();
4242
});
4343

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

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

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var isProbability = require( './../lib' );
3131

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var opts = {
4040

4141
tape( 'main export is a function', opts, function test( t ) {
4242
t.ok( true, __filename );
43-
t.equal( typeof isProbability, 'function', 'main export is a function' );
43+
t.strictEqual( typeof isProbability, 'function', 'main export is a function' );
4444
t.end();
4545
});
4646

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

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

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

lib/node_modules/@stdlib/math/base/assert/test/test.js

+1-1
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/math/base/napi/test/test.js

+1-1
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/math/base/ops/test/test.js

+1-1
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/math/base/special/abs/test/test.abs.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var abs = require( './../lib/abs.js' );
3333

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

lib/node_modules/@stdlib/math/base/special/abs/test/test.high.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var HIGH = require( './../lib/high.js' );
2929

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

lib/node_modules/@stdlib/math/base/special/abs/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var abs = require( './../lib' );
3333

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

0 commit comments

Comments
 (0)