Determines whether the passed value is an Array.
npm install is-array-x href="https://travis-ci.org/Xotic750/is-array-x"
title="Travis status"> src="https://travis-ci.org/Xotic750/is-array-x.svg?branch=master"
alt="Travis status" height="18">
href="https://david-dm.org/Xotic750/is-array-x"
title="Dependency status"> alt="Dependency status" height="18"/>
href="https://david-dm.org/Xotic750/is-array-x?type=dev"
title="devDependency status"> alt="devDependency status" height="18"/>
href="https://badge.fury.io/js/is-array-x"
title="npm version"> alt="npm version" height="18">
href="https://www.jsdelivr.com/package/npm/is-array-x"
title="jsDelivr hits"> alt="jsDelivr hits" height="18">
href="https://bettercodehub.com/results/Xotic750/is-array-x"
title="bettercodehub score"> alt="bettercodehub score" height="18">
href="https://coveralls.io/github/Xotic750/is-array-x?branch=master"
title="Coverage Status"> alt="Coverage Status" height="18">
Determines whether the passed value is an Array.
The isArray() function determines whether the passed value is an Array.
Kind: Exported member
Returns: boolean - true if the object is an Array; otherwise, false.
| Param | Type | Description |
| ----- | --------------- | -------------------------- |
| obj | \* | The object to be checked.. |
Example
``js
import isArray from 'is-array-x';
console.log(isArray([])); // true
console.log(isArray({})); // false
``