Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jul 24, 2023
1 parent 6eaa8f3 commit 2d70f3c
Show file tree
Hide file tree
Showing 232 changed files with 242 additions and 241 deletions.
21 changes: 11 additions & 10 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -3,36 +3,37 @@
# Contributors listed in alphabetical order.

Ali Salesi <[email protected]>
Amit Jimiwal <[email protected]>
Athan Reines <[email protected]>
Brendan Graetz <[email protected]>
Bruno Fenzl <[email protected]>
Christopher Dambamuromo <[email protected]>
Dan Rose <[email protected]>
Dominik Moritz <[email protected]>
Dorrin Sotoudeh <[email protected]>
Frank Kovacs <[email protected]>
Harshita Kalani <[email protected].com>
James <[email protected]>
Harshita Kalani <harshitakalani02@gmail.com>
James Gelok <[email protected]>
Jithin KS <[email protected]>
Joey Reed <[email protected]>
Jordan-Gallivan <[email protected]>
Jordan Gallivan <[email protected]>
Joris Labie <[email protected]>
Justin Dennison <[email protected]>
KATTA NAGA NITHIN <[email protected]>
Marcus <[email protected]>
Marcus Fantham <[email protected]>
Matt Cochrane <[email protected]>
Milan Raj <[email protected]>
Momtchil Momtchev <[email protected]>
Naresh Jagadeesan <[email protected]>
Naresh Jagadeesan <[email protected]>
Nithin Katta <[email protected]>
Ognjen Jevremović <[email protected]>
Philipp Burckhardt <[email protected]>
Pranav <[email protected]>
Pranav Goswami <[email protected]>
Ricky Reusser <[email protected]>
Roman Stetsyk <[email protected]>
Ryan Seal <[email protected]>
Seyyed Parsa Neshaei <[email protected]>
Shraddheya Shendre <[email protected]>
Stephannie Jiménez Gacha <[email protected]>
Yernar Yergaziyev <[email protected]>
dorrin-sot <[email protected]>
drunken_devv <[email protected]>
orimiles5 <[email protected]>
rei2hu <[email protected]>
rei2hu <[email protected]>
2 changes: 1 addition & 1 deletion contains/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var contains = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof contains, 'function', 'main export is a function' );
t.strictEqual( typeof contains, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion deep-equal/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var deepEqual = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof deepEqual, 'function', 'main export is a function' );
t.strictEqual( typeof deepEqual, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion has-utf16-surrogate-pair-at/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var hasUTF16SurrogatePairAt = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof hasUTF16SurrogatePairAt, 'function', 'main export is a function' );
t.strictEqual( typeof hasUTF16SurrogatePairAt, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-absolute-path/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var isAbsolutePath = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isAbsolutePath, 'function', 'main export is a function' );
t.strictEqual( typeof isAbsolutePath, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-absolute-path/test/test.posix.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var isAbsolutePath = require( './../lib/posix.js' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isAbsolutePath, 'function', 'main export is a function' );
t.strictEqual( typeof isAbsolutePath, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-absolute-path/test/test.win32.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var isAbsolutePath = require( './../lib/win32.js' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isAbsolutePath, 'function', 'main export is a function' );
t.strictEqual( typeof isAbsolutePath, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-accessor-property-in/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var isAccessorPropertyIn = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isAccessorPropertyIn, 'function', 'export is a function' );
t.strictEqual( typeof isAccessorPropertyIn, 'function', 'export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-accessor-property/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var isAccessorProperty = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isAccessorProperty, 'function', 'export is a function' );
t.strictEqual( typeof isAccessorProperty, 'function', 'export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-array-like/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var isArrayLike = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isArrayLike, 'function', 'main export is a function' );
t.strictEqual( typeof isArrayLike, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-array/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var isArray = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isArray, 'function', 'main export is a function' );
t.strictEqual( typeof isArray, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-big-endian/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var IS_BIG_ENDIAN = require( './../lib' );

tape( 'main export is a boolean', function test( t ) {
t.ok( true, __filename );
t.equal( typeof IS_BIG_ENDIAN, 'boolean', 'main export is a boolean' );
t.strictEqual( typeof IS_BIG_ENDIAN, 'boolean', 'main export is a boolean' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-binary-string/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var isBinaryString = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isBinaryString, 'function', 'main export is a function' );
t.strictEqual( typeof isBinaryString, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-blank-string/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var isBlankString = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isBlankString, 'function', 'main export is a function' );
t.strictEqual( typeof isBlankString, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-boolean-array/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ var isBooleanArray = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isBooleanArray, 'function', 'main export is a function' );
t.strictEqual( typeof isBooleanArray, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-boolean/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var isBoolean = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isBoolean, 'function', 'main export is a function' );
t.strictEqual( typeof isBoolean, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-boolean/test/test.main.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var isBoolean = require( './../lib/main.js' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isBoolean, 'function', 'main export is a function' );
t.strictEqual( typeof isBoolean, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-boolean/test/test.object.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ var opts = {

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isBoolean, 'function', 'main export is a function' );
t.strictEqual( typeof isBoolean, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-boolean/test/test.primitive.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var isBoolean = require( './../lib/primitive.js' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isBoolean, 'function', 'main export is a function' );
t.strictEqual( typeof isBoolean, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-boolean/test/test.try2serialize.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var serialize = require( './../lib/try2serialize.js' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof serialize, 'function', 'main export is a function' );
t.strictEqual( typeof serialize, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-boxed-primitive/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ var opts = {

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isBoxedPrimitive, 'function', 'main export is a function' );
t.strictEqual( typeof isBoxedPrimitive, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-browser/test/test.browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var IS_BROWSER = require( './../lib/browser.js' );

tape( 'main export is a boolean', function test( t ) {
t.ok( true, __filename );
t.equal( typeof IS_BROWSER, 'boolean', 'main export is a boolean' );
t.strictEqual( typeof IS_BROWSER, 'boolean', 'main export is a boolean' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-browser/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ var IS_BROWSER = require( './../lib' );

tape( 'main export is a boolean', function test( t ) {
t.ok( true, __filename );
t.equal( typeof IS_BROWSER, 'boolean', 'main export is a boolean' );
t.strictEqual( typeof IS_BROWSER, 'boolean', 'main export is a boolean' );
t.end();
});
2 changes: 1 addition & 1 deletion is-browser/test/test.main.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ if ( typeof global === 'undefined' ) {

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isBrowser, 'function', 'main export is a function' );
t.strictEqual( typeof isBrowser, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-buffer/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var isBuffer = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isBuffer, 'function', 'export is a function' );
t.strictEqual( typeof isBuffer, 'function', 'export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-capitalized/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var isCapitalized = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isCapitalized, 'function', 'main export is a function' );
t.strictEqual( typeof isCapitalized, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-centrosymmetric-matrix/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var isCentrosymmetricMatrix = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isCentrosymmetricMatrix, 'function', 'main export is a function' );
t.strictEqual( typeof isCentrosymmetricMatrix, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-circular-array/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var isCircularArray = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isCircularArray, 'function', 'main export is a function' );
t.strictEqual( typeof isCircularArray, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-circular-plain-object/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var isCircularPlainObject = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isCircularPlainObject, 'function', 'main export is a function' );
t.strictEqual( typeof isCircularPlainObject, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-circular/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var isCircular = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isCircular, 'function', 'main export is a function' );
t.strictEqual( typeof isCircular, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-complex-like/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var isComplexLike = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isComplexLike, 'function', 'main export is a function' );
t.strictEqual( typeof isComplexLike, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-complex-typed-array-like/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ var isComplexTypedArrayLike = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isComplexTypedArrayLike, 'function', 'main export is a function' );
t.strictEqual( typeof isComplexTypedArrayLike, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-complex/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var isComplex = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isComplex, 'function', 'main export is a function' );
t.strictEqual( typeof isComplex, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-complex128/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var isComplex128 = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isComplex128, 'function', 'main export is a function' );
t.strictEqual( typeof isComplex128, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-complex64/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var isComplex64 = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isComplex64, 'function', 'main export is a function' );
t.strictEqual( typeof isComplex64, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-composite/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var isComposite = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isComposite, 'function', 'main export is a function' );
t.strictEqual( typeof isComposite, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-composite/test/test.main.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ var isComposite = require( './../lib/main.js' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isComposite, 'function', 'main export is a function' );
t.strictEqual( typeof isComposite, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-composite/test/test.object.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ var isComposite = require( './../lib/object.js' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isComposite, 'function', 'main export is a function' );
t.strictEqual( typeof isComposite, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-composite/test/test.primitive.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ var isComposite = require( './../lib/primitive.js' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isComposite, 'function', 'main export is a function' );
t.strictEqual( typeof isComposite, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion is-configurable-property-in/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var isConfigurablePropertyIn = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof isConfigurablePropertyIn, 'function', 'export is a function' );
t.strictEqual( typeof isConfigurablePropertyIn, 'function', 'export is a function' );
t.end();
});

Expand Down
Loading

0 comments on commit 2d70f3c

Please sign in to comment.