huituanxueqian 7740728225 commit hai 1 ano
..
.editorconfig 7740728225 commit hai 1 ano
.istanbul.yml 7740728225 commit hai 1 ano
.npmignore 7740728225 commit hai 1 ano
.travis.yml 7740728225 commit hai 1 ano
LICENSE 7740728225 commit hai 1 ano
README.md 7740728225 commit hai 1 ano
index.js 7740728225 commit hai 1 ano
package.json 7740728225 commit hai 1 ano

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.