Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*/
interface IsFiniteArray {
/**
* Tests if a value is an array-like object of finite numbers.
* Tests if a value is an array-like object of finite numbers.
*
* @param value - value to test
* @returns boolean indicating whether a value is an array-like object of finite numbers
Expand All @@ -36,7 +36,7 @@
* var bool = isFiniteArray( [ -3.0, 1.0/0.0 ] );
* // returns false
*/
( value: any ): value is ArrayLike<number | Number>;

Check warning on line 39 in lib/node_modules/@stdlib/assert/is-finite-array/docs/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type

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

Check warning on line 59 in lib/node_modules/@stdlib/assert/is-finite-array/docs/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type

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

Check warning on line 79 in lib/node_modules/@stdlib/assert/is-finite-array/docs/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type
}

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"objectMode": false,
"encoding": null,
"sep": "\n",
"copy": true,
"siter": 1e308
"objectMode": false,
"encoding": null,
"sep": "\n",
"copy": true,
"siter": 1e308
}