Checks if the given value is an array using native Array.isArray.
Array.isArray
isArray([]); // true isArray('not array'); // false
The value to check.
Whether the value is an array.
Generated using TypeDoc
Checks if the given value is an array using native
Array.isArray
.isArray([]); // true isArray('not array'); // false