tree: 778f1d38c8d8c3af94c1479908fe19848f78f828 [path history] [tgz]
  1. .editorconfig
  2. .istanbul.yml
  3. .npmignore
  4. .travis.yml
  5. index.js
  6. LICENSE
  7. package.json
  8. README.md
node_modules/nyc/node_modules/is-arrayish/README.md

node-is-arrayish Travis-CI.org Build Status Coveralls.io Coverage Rating

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.