Package Exports
- is-any-array
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 toString.call ends with Array
Installation
$ npm install is-any-array
API Documentation
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;