XuelesszzZ 94af2b8e7b 6-30-5 před 1 rokem
..
.editorconfig 94af2b8e7b 6-30-5 před 1 rokem
.istanbul.yml 94af2b8e7b 6-30-5 před 1 rokem
.npmignore 94af2b8e7b 6-30-5 před 1 rokem
.travis.yml 94af2b8e7b 6-30-5 před 1 rokem
LICENSE 94af2b8e7b 6-30-5 před 1 rokem
README.md 94af2b8e7b 6-30-5 před 1 rokem
index.js 94af2b8e7b 6-30-5 před 1 rokem
package.json 94af2b8e7b 6-30-5 před 1 rokem

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.