setup-go/node_modules/is-arrayish
Stephen Franceschelli a966e84ff9 Fix.
2019-07-30 13:30:32 -04:00
..
.editorconfig Fix. 2019-07-30 13:30:32 -04:00
.istanbul.yml Fix. 2019-07-30 13:30:32 -04:00
.npmignore Fix. 2019-07-30 13:30:32 -04:00
.travis.yml Fix. 2019-07-30 13:30:32 -04:00
index.js Fix. 2019-07-30 13:30:32 -04:00
LICENSE Fix. 2019-07-30 13:30:32 -04:00
package.json Fix. 2019-07-30 13:30:32 -04:00
README.md Fix. 2019-07-30 13:30:32 -04:00

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.