Determine if a value is array like.
npm install is-array-like-x href="https://travis-ci.org/Xotic750/is-array-like-x"
title="Travis status"> src="https://travis-ci.org/Xotic750/is-array-like-x.svg?branch=master"
alt="Travis status" height="18">
href="https://david-dm.org/Xotic750/is-array-like-x"
title="Dependency status"> alt="Dependency status" height="18"/>
href="https://david-dm.org/Xotic750/is-array-like-x?type=dev"
title="devDependency status"> alt="devDependency status" height="18"/>
href="https://badge.fury.io/js/is-array-like-x"
title="npm version"> alt="npm version" height="18">
href="https://www.jsdelivr.com/package/npm/is-array-like-x"
title="jsDelivr hits"> alt="jsDelivr hits" height="18">
href="https://bettercodehub.com/results/Xotic750/is-array-like-x"
title="bettercodehub score"> alt="bettercodehub score" height="18">
href="https://coveralls.io/github/Xotic750/is-array-like-x?branch=master"
title="Coverage Status"> alt="Coverage Status" height="18">
Determine if a value is array like.
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
``js
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
``