zz 65c8a28f48 项目初始化 vor 1 Woche
..
.editorconfig 65c8a28f48 项目初始化 vor 1 Woche
.istanbul.yml 65c8a28f48 项目初始化 vor 1 Woche
.npmignore 65c8a28f48 项目初始化 vor 1 Woche
.travis.yml 65c8a28f48 项目初始化 vor 1 Woche
LICENSE 65c8a28f48 项目初始化 vor 1 Woche
README.md 65c8a28f48 项目初始化 vor 1 Woche
index.js 65c8a28f48 项目初始化 vor 1 Woche
package.json 65c8a28f48 项目初始化 vor 1 Woche

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.