tree: 70d12bed5058d947946ec9569b38593b3ffeb6d1 [path history] [tgz]
  1. .editorconfig
  2. .istanbul.yml
  3. .npmignore
  4. .travis.yml
  5. index.js
  6. LICENSE
  7. package.json
  8. README.md
src/cobalt/debug/remote/devtools/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.