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

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.