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 Jun 28, 2023
1 parent 088ea36 commit a85c316
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/.keepalive

This file was deleted.

1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Joey Reed <[email protected]>
Jordan-Gallivan <[email protected]>
Joris Labie <[email protected]>
Justin Dennison <[email protected]>
KATTA NAGA NITHIN <[email protected]>
Marcus <[email protected]>
Matt Cochrane <[email protected]>
Milan Raj <[email protected]>
Expand Down
6 changes: 3 additions & 3 deletions docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ interface IsIntegerArray {
* var bool = isIntegerArray( [ -3.0, '3.0' ] );
* // returns false
*/
( value: any ): boolean;
( value: any ): value is ArrayLike<number | Number>;

/**
* Tests if a value is an array-like object containing only primitive integer values.
Expand All @@ -56,7 +56,7 @@ interface IsIntegerArray {
* var bool = isIntegerArray.primitives( [ -3.0, new Number(-1.0) ] );
* // returns false
*/
primitives( value: any ): boolean;
primitives( value: any ): value is ArrayLike<number>;

/**
* Tests if a value is an array-like object containing only number objects having integer values.
Expand All @@ -76,7 +76,7 @@ interface IsIntegerArray {
* var bool = isIntegerArray.objects( [ 3.0, new Number(-1.0) ] );
* // returns false
*/
objects( value: any ): boolean;
objects( value: any ): value is ArrayLike<Number>;
}

/**
Expand Down

0 comments on commit a85c316

Please sign in to comment.