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

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.