Package Exports
- is-arrayish
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-arrayish) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
node-is-arrayish

Determines if an object can be used like an Array
Example
var isArrayish = require('is-arrayish');
isArrayish([]); // true
isArrayish({__proto__: []}); // true
isArrayish({}); // false
isArrayish({length:10}); // false
License
Licensed under the MIT License. You can find a copy of it in LICENSE.