Bachir Soussi Chiadmi cefd1c2ad0 updated sys and created publi | пре 6 година | |
---|---|---|
.. | ||
.editorconfig | пре 7 година | |
.istanbul.yml | пре 7 година | |
.npmignore | пре 7 година | |
.travis.yml | пре 7 година | |
LICENSE | пре 7 година | |
README.md | пре 7 година | |
index.js | пре 7 година | |
package.json | пре 6 година |
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.