max_liu b7ab7c8514 chore: 更新node_modules依赖文件 hai 2 semanas
..
.editorconfig b7ab7c8514 chore: 更新node_modules依赖文件 hai 2 semanas
.istanbul.yml b7ab7c8514 chore: 更新node_modules依赖文件 hai 2 semanas
.npmignore b7ab7c8514 chore: 更新node_modules依赖文件 hai 2 semanas
.travis.yml b7ab7c8514 chore: 更新node_modules依赖文件 hai 2 semanas
LICENSE b7ab7c8514 chore: 更新node_modules依赖文件 hai 2 semanas
README.md b7ab7c8514 chore: 更新node_modules依赖文件 hai 2 semanas
index.js b7ab7c8514 chore: 更新node_modules依赖文件 hai 2 semanas
package.json b7ab7c8514 chore: 更新node_modules依赖文件 hai 2 semanas

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.