is-array-like-x
Determine if a value is array like.
module.exports(value)
⇒ boolean
⏏
Checks if value is array-like. A value is considered array-like if it's
not a function and has a length
that's an integer greater than or
equal to 0 and less than or equal to Number.MAX_SAFE_INTEGER
.
Kind: Exported function
Returns: boolean
- Returns true
if subject is array-like, else false
.
Param | Type | Description |
---|
value | * | The object to be tested. |
Example
import isArrayLike from 'is-array-like-x';
console.log(isArrayLike([1, 2, 3]));
console.log(isArrayLike(document.body.children));
console.log(isArrayLike('abc'));
console.log(isArrayLike(isArrayLike));