odin-default-js-exercises/node_modules/is-arrayish
Cody Loyd 834d78b8b2 remove timer and simon 2017-12-15 12:56:14 -06:00
..
.editorconfig remove timer and simon 2017-12-15 12:56:14 -06:00
.istanbul.yml remove timer and simon 2017-12-15 12:56:14 -06:00
.npmignore remove timer and simon 2017-12-15 12:56:14 -06:00
.travis.yml remove timer and simon 2017-12-15 12:56:14 -06:00
LICENSE remove timer and simon 2017-12-15 12:56:14 -06:00
README.md remove timer and simon 2017-12-15 12:56:14 -06:00
index.js remove timer and simon 2017-12-15 12:56:14 -06:00
package.json remove timer and simon 2017-12-15 12:56:14 -06:00

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.