is-array-like-x
v2.1.2
Published
Determine if a value is array like.
Downloads
2,726
Maintainers
Readme
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])); // true
console.log(isArrayLike(document.body.children)); // true
console.log(isArrayLike('abc')); // true
console.log(isArrayLike(isArrayLike)); // false