Package Exports
- is-any-array
- is-any-array/lib-esm/index.js
- is-any-array/lib/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (is-any-array) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
is-any-array
Check if a value is any kind of array.
Installation
$ npm install is-any-array
Example
const {isAnyArray} = require('is-any-array');
isAnyArray(1); // false
isAnyArray('ab'); // false
isAnyArray({ a: 1 }); // false
isAnyArray([1, 2, 3]); // true
isAnyArray(new Uint16Array(2))) // true;