Skip to content

Commit 2d70f3c

Browse files
committed
Auto-generated commit
1 parent 6eaa8f3 commit 2d70f3c

File tree

232 files changed

+242
-241
lines changed

Some content is hidden

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

232 files changed

+242
-241
lines changed

CONTRIBUTORS

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,36 +3,37 @@
33
# Contributors listed in alphabetical order.
44

55
Ali Salesi <ali_sal1381@yahoo.com>
6+
Amit Jimiwal <amitjimiwal45@gmail.com>
67
Athan Reines <kgryte@gmail.com>
78
Brendan Graetz <bguiz@users.noreply.github.com>
89
Bruno Fenzl <brunofenzl@gmail.com>
910
Christopher Dambamuromo <chridam@gmail.com>
11+
Dan Rose <danoftheroses@gmail.com>
1012
Dominik Moritz <domoritz@gmail.com>
13+
Dorrin Sotoudeh <dorrinsotoudeh123@gmail.com>
1114
Frank Kovacs <fran70kk@gmail.com>
12-
Harshita Kalani <95532771+HarshitaKalani@users.noreply.github.com>
13-
James <jdgelok@gmail.com>
15+
Harshita Kalani <harshitakalani02@gmail.com>
16+
James Gelok <jdgelok@gmail.com>
1417
Jithin KS <jithinks112@gmail.com>
1518
Joey Reed <joeyrreed@gmail.com>
16-
Jordan-Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com>
19+
Jordan Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com>
1720
Joris Labie <joris.labie1@gmail.com>
1821
Justin Dennison <justin1dennison@gmail.com>
19-
KATTA NAGA NITHIN <88046362+nithinkatta@users.noreply.github.com>
20-
Marcus <mfantham@users.noreply.github.com>
22+
Marcus Fantham <mfantham@users.noreply.github.com>
2123
Matt Cochrane <matthew.cochrane.eng@gmail.com>
2224
Milan Raj <rajsite@users.noreply.github.com>
2325
Momtchil Momtchev <momtchil@momtchev.com>
24-
Naresh Jagadeesan <37257700+Infinage@users.noreply.github.com>
26+
Naresh Jagadeesan <naresh.naresh000@gmail.com>
27+
Nithin Katta <88046362+nithinkatta@users.noreply.github.com>
2528
Ognjen Jevremović <ognjenjevremovic@users.noreply.github.com>
2629
Philipp Burckhardt <pburckhardt@outlook.com>
27-
Pranav <85227306+Pranavchiku@users.noreply.github.com>
30+
Pranav Goswami <goswami.4@iitj.ac.in>
2831
Ricky Reusser <rsreusser@gmail.com>
2932
Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com>
3033
Ryan Seal <splrk@users.noreply.github.com>
3134
Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
3235
Shraddheya Shendre <shendreshraddheya@gmail.com>
3336
Stephannie Jiménez Gacha <steff456@hotmail.com>
3437
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
35-
dorrin-sot <59933477+dorrin-sot@users.noreply.github.com>
36-
drunken_devv <90555965+amitjimiwal@users.noreply.github.com>
3738
orimiles5 <97595296+orimiles5@users.noreply.github.com>
38-
rei2hu <rei2hu@users.noreply.github.com>
39+
rei2hu <reimu@reimu.ws>

contains/test/test.js

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

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

deep-equal/test/test.js

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

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

has-utf16-surrogate-pair-at/test/test.js

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

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

is-absolute-path/test/test.js

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

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

is-absolute-path/test/test.posix.js

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

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

is-absolute-path/test/test.win32.js

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

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

is-accessor-property-in/test/test.js

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

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

is-accessor-property/test/test.js

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

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

is-array-like/test/test.js

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

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

is-array/test/test.js

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

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

is-big-endian/test/test.js

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

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

is-binary-string/test/test.js

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

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

is-blank-string/test/test.js

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

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

is-boolean-array/test/test.js

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

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

is-boolean/test/test.js

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

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

is-boolean/test/test.main.js

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

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

is-boolean/test/test.object.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', function test( t ) {
4141
t.ok( true, __filename );
42-
t.equal( typeof isBoolean, 'function', 'main export is a function' );
42+
t.strictEqual( typeof isBoolean, 'function', 'main export is a function' );
4343
t.end();
4444
});
4545

is-boolean/test/test.primitive.js

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

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

is-boolean/test/test.try2serialize.js

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

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

is-boxed-primitive/test/test.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', function test( t ) {
4343
t.ok( true, __filename );
44-
t.equal( typeof isBoxedPrimitive, 'function', 'main export is a function' );
44+
t.strictEqual( typeof isBoxedPrimitive, 'function', 'main export is a function' );
4545
t.end();
4646
});
4747

is-browser/test/test.browser.js

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

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

is-browser/test/test.js

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

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

is-browser/test/test.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ if ( typeof global === 'undefined' ) {
4141

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

is-buffer/test/test.js

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

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

is-capitalized/test/test.js

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

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

is-centrosymmetric-matrix/test/test.js

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

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

is-circular-array/test/test.js

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

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

is-circular-plain-object/test/test.js

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

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

is-circular/test/test.js

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

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

is-complex-like/test/test.js

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

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

is-complex-typed-array-like/test/test.js

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

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

is-complex/test/test.js

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

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

is-complex128/test/test.js

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

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

is-complex64/test/test.js

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

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

is-composite/test/test.js

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

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

is-composite/test/test.main.js

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

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

is-composite/test/test.object.js

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

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

is-composite/test/test.primitive.js

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

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

is-configurable-property-in/test/test.js

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

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

0 commit comments

Comments
 (0)