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 7, 2023
1 parent 8eae113 commit 6eaa8f3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1337,15 +1337,15 @@ interface Namespace {
* @returns boolean indicating if a value is an array-like object
*
* @example
* var bool = ns.isArrayLikeObjectObject( [] );
* var bool = ns.isArrayLikeObject( [] );
* // returns true
*
* @example
* var bool = ns.isArrayLikeObjectObject( { 'length':10 } );
* var bool = ns.isArrayLikeObject( { 'length':10 } );
* // returns true
*
* @example
* var bool = ns.isArrayLikeObjectObject( 'beep' );
* var bool = ns.isArrayLikeObject( 'beep' );
* // returns false
*/
isArrayLikeObject: typeof isArrayLikeObject;
Expand Down Expand Up @@ -3709,19 +3709,19 @@ interface Namespace {
* @returns boolean indicating whether value is an array-like object containing only NaN values
*
* @example
* var bool = ns.isNaNArray( [NaN,NaN,NaN] );
* var bool = ns.isNaNArray( [ NaN, NaN, NaN ] );
* // returns true
*
* @example
* var bool = ns.isNaNArray( [NaN,2] );
* var bool = ns.isNaNArray( [ NaN, 2 ] );
* // returns false
*
* @example
* var bool = ns.isNaNArray.primitives( [NaN,NaN,NaN] );
* var bool = ns.isNaNArray.primitives( [ NaN, NaN, NaN ] );
* // returns true
*
* @example
* var bool = ns.isNaNArray.objects( [new Number( NaN ),new Number( NaN )] );
* var bool = ns.isNaNArray.objects( [ new Number( NaN ), new Number( NaN ) ] );
* // returns true
*/
isNaNArray: typeof isNaNArray;
Expand Down

0 comments on commit 6eaa8f3

Please sign in to comment.