max_liu b7ab7c8514 chore: 更新node_modules依赖文件 2 nedēļas atpakaļ
..
.editorconfig b7ab7c8514 chore: 更新node_modules依赖文件 2 nedēļas atpakaļ
.istanbul.yml b7ab7c8514 chore: 更新node_modules依赖文件 2 nedēļas atpakaļ
.npmignore b7ab7c8514 chore: 更新node_modules依赖文件 2 nedēļas atpakaļ
.travis.yml b7ab7c8514 chore: 更新node_modules依赖文件 2 nedēļas atpakaļ
LICENSE b7ab7c8514 chore: 更新node_modules依赖文件 2 nedēļas atpakaļ
README.md b7ab7c8514 chore: 更新node_modules依赖文件 2 nedēļas atpakaļ
index.js b7ab7c8514 chore: 更新node_modules依赖文件 2 nedēļas atpakaļ
package.json b7ab7c8514 chore: 更新node_modules依赖文件 2 nedēļas atpakaļ

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.