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 Sep 17, 2024
1 parent 58ee818 commit b574d74
Show file tree
Hide file tree
Showing 45 changed files with 9 additions and 44 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<section class="release" id="unreleased">

## Unreleased (2024-09-16)
## Unreleased (2024-09-17)

<section class="packages">

Expand Down Expand Up @@ -216,6 +216,9 @@ A total of 5 people contributed to this release. Thank you to the following cont

<details>

- [`f387603`](https://github.com/stdlib-js/stdlib/commit/f387603e739f88a38af3263ce6ff675ad903ee8c) - **docs:** consistently use declarative instead of imperative sentences outside of intros _(by Philipp Burckhardt)_
- [`ed44fee`](https://github.com/stdlib-js/stdlib/commit/ed44feecb9eaa5e0849d1a533e5415624d0aa338) - **style:** use imperative in package.json description and end with period _(by Philipp Burckhardt)_
- [`31fd427`](https://github.com/stdlib-js/stdlib/commit/31fd42744ec5d7073041f97c6f72350b8005c0fc) - **style:** remove unwanted empty lines _(by Philipp Burckhardt)_
- [`5279713`](https://github.com/stdlib-js/stdlib/commit/527971383e70a0e92dbca647dabfef27f294f149) - **feat:** add `isWebAssemblyMemory` to namespace _(by Athan Reines)_
- [`718ba36`](https://github.com/stdlib-js/stdlib/commit/718ba365fd18e0e35582433c22f6878a0e744675) - **feat:** add `assert/is-wasm-memory` _(by Athan Reines)_
- [`15e6c71`](https://github.com/stdlib-js/stdlib/commit/15e6c71cac991fadbb8f804a7811650daa0d5e87) - **feat:** add `assert/is-same-array-like-object` _(by yaswanth, Philipp Burckhardt)_
Expand Down
2 changes: 2 additions & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#
# Contributors listed in alphabetical order.

Aayush Khanna <[email protected]>
Adarsh Palaskar <[email protected]>
Aditya Sapra <[email protected]>
AgPriyanshu18 <[email protected]>
Expand Down Expand Up @@ -39,6 +40,7 @@ Joey Reed <[email protected]>
Jordan Gallivan <[email protected]>
Joris Labie <[email protected]>
Justin Dennison <[email protected]>
Kaif Mohd <[email protected]>
Karthik Prakash <[email protected]>
Khaldon <[email protected]>
Krishnendu Das <[email protected]>
Expand Down
1 change: 0 additions & 1 deletion is-boolean-array/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isBooleanArray = require( './index' );
isBooleanArray.primitives( [ true ], 123 ); // $ExpectError
}


// Attached to main export is an `objects` method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-boolean/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isBoolean = require( './index' );
isBoolean.isPrimitive( true, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
2 changes: 1 addition & 1 deletion is-circular/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var isCircular = require( '@stdlib/assert/is-circular' );

#### isCircular( value )

Test if an object-like `value` contains a circular reference.
Tests if an object-like `value` contains a circular reference.

```javascript
var obj = {
Expand Down
1 change: 0 additions & 1 deletion is-composite/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isComposite = require( './index' );
isComposite.isPrimitive( 0.2, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-cube-number/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isCubeNumber = require( './index' );
isCubeNumber.isPrimitive( 0.2, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-empty-string/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isEmptyString = require( './index' );
isEmptyString.isPrimitive( 'abc', 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-even/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isEven = require( './index' );
isEven.isPrimitive( 4, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-finite/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isFinite = require( './index' );
isFinite.isPrimitive( 4, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-infinite/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isInfinite = require( './index' );
isInfinite.isPrimitive( 1 / 0, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-integer/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isInteger = require( './index' );
isInteger.isPrimitive( 2, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-nan/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isnan = require( './index' );
isnan.isPrimitive( NaN, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-negative-integer-array/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isNegativeIntegerArray = require( './index' );
isNegativeIntegerArray.primitives( [ -2 ], 123 ); // $ExpectError
}


// Attached to main export is an `objects` method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-negative-integer/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isNegativeInteger = require( './index' );
isNegativeInteger.isPrimitive( -2, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-negative-number-array/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isNegativeNumberArray = require( './index' );
isNegativeNumberArray.primitives( [ -2 ], 123 ); // $ExpectError
}


// Attached to main export is an `objects` method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-negative-number/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isNegativeNumber = require( './index' );
isNegativeNumber.isPrimitive( -2, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-negative-zero/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ import isNegativeZero = require( './index' );
isNegativeZero.isPrimitive( -0, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-nonnegative-integer-array/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isNonNegativeIntegerArray = require( './index' );
isNonNegativeIntegerArray.primitives( [ 2 ], 123 ); // $ExpectError
}


// Attached to main export is an `objects` method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-nonnegative-integer/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isNonNegativeInteger = require( './index' );
isNonNegativeInteger.isPrimitive( 2, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-nonnegative-number-array/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isNonNegativeNumberArray = require( './index' );
isNonNegativeNumberArray.primitives( [ 2 ], 123 ); // $ExpectError
}


// Attached to main export is an `objects` method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-nonnegative-number/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isNonNegativeNumber = require( './index' );
isNonNegativeNumber.isPrimitive( 2, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-nonpositive-integer-array/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isNonPositiveIntegerArray = require( './index' );
isNonPositiveIntegerArray.primitives( [ -2 ], 123 ); // $ExpectError
}


// Attached to main export is an `objects` method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-nonpositive-integer/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isNonPositiveInteger = require( './index' );
isNonPositiveInteger.isPrimitive( -2, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-nonpositive-number-array/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isNonPositiveNumberArray = require( './index' );
isNonPositiveNumberArray.primitives( [ -2 ], 123 ); // $ExpectError
}


// Attached to main export is an `objects` method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-nonpositive-number/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isNonPositiveNumber = require( './index' );
isNonPositiveNumber.isPrimitive( -2, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-number/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isNumber = require( './index' );
isNumber.isPrimitive( 2, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-odd/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isOdd = require( './index' );
isOdd.isPrimitive( 3, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-positive-finite/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isPositiveFinite = require( './index' );
isPositiveFinite.isPrimitive( 2, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-positive-integer-array/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isPositiveIntegerArray = require( './index' );
isPositiveIntegerArray.primitives( [ 2 ], 123 ); // $ExpectError
}


// Attached to main export is an `objects` method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-positive-integer/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isPositiveInteger = require( './index' );
isPositiveInteger.isPrimitive( 2, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-positive-number-array/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isPositiveNumberArray = require( './index' );
isPositiveNumberArray.primitives( [ 2 ], 123 ); // $ExpectError
}


// Attached to main export is an `objects` method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-positive-number/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isPositiveNumber = require( './index' );
isPositiveNumber.isPrimitive( 2, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-positive-zero/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ import isPositiveZero = require( './index' );
isPositiveZero.isPrimitive( 0, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-prime/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isPrime = require( './index' );
isPrime.isPrimitive( 0.2, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-probability-array/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isProbabilityArray = require( './index' );
isProbabilityArray.primitives( [ 0.2 ], 123 ); // $ExpectError
}


// Attached to main export is an `objects` method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-probability/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isProbability = require( './index' );
isProbability.isPrimitive( 0.2, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
2 changes: 1 addition & 1 deletion is-ragged-nested-array/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stdlib/assert/is-ragged-nested-array",
"version": "0.0.0",
"description": "Test if a value is a ragged nested array",
"description": "Test if a value is a ragged nested array.",
"license": "Apache-2.0",
"author": {
"name": "The Stdlib Authors",
Expand Down
1 change: 0 additions & 1 deletion is-safe-integer/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isSafeInteger = require( './index' );
isSafeInteger.isPrimitive( 2, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
2 changes: 1 addition & 1 deletion is-same-array-like-object/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var isSameArrayLikeObject = require( '@stdlib/assert/is-same-array-like-object'

#### isSameArrayLikeObject( v1, v2 )

Test if two arguments are both [array-like objects][@stdlib/assert/is-array-like-object] and have the [same values][@stdlib/assert/is-same-value].
Tests if two arguments are both [array-like objects][@stdlib/assert/is-array-like-object] and have the [same values][@stdlib/assert/is-same-value].

```javascript
var x = [ 1.0, 2.0 ];
Expand Down
1 change: 0 additions & 1 deletion is-square-number/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isSquareNumber = require( './index' );
isSquareNumber.isPrimitive( 0.2, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-square-triangular-number/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isSquareTriangularNumber = require( './index' );
isSquareTriangularNumber.isPrimitive( 0.2, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-string-array/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isStringArray = require( './index' );
isStringArray.primitives( [ 'abc' ], 123 ); // $ExpectError
}


// Attached to main export is an `objects` method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-symbol-array/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isSymbolArray = require( './index' );
isSymbolArray.primitives( [ Symbol( 'abc' ) ], 123 ); // $ExpectError
}


// Attached to main export is an `objects` method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down
1 change: 0 additions & 1 deletion is-triangular-number/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import isTriangularNumber = require( './index' );
isTriangularNumber.isPrimitive( 0.2, 123 ); // $ExpectError
}


// Attached to main export is an isPrimitive method which returns a boolean...
{
// eslint-disable-next-line no-new-wrappers
Expand Down

0 comments on commit b574d74

Please sign in to comment.