sensordb2 e64a8defe5 3.17 | il y a 1 an | |
---|---|---|
.. | ||
.editorconfig | il y a 1 an | |
.istanbul.yml | il y a 1 an | |
.npmignore | il y a 1 an | |
.travis.yml | il y a 1 an | |
LICENSE | il y a 1 an | |
README.md | il y a 1 an | |
index.js | il y a 1 an | |
package.json | il y a 1 an |
Determines if an object can be used like an Array
var isArrayish = require('is-arrayish');
isArrayish([]); // true
isArrayish({__proto__: []}); // true
isArrayish({}); // false
isArrayish({length:10}); // false
Licensed under the MIT License. You can find a copy of it in LICENSE.