ck110 f2d1f582c1 增加聊天 1 month ago
..
.editorconfig f2d1f582c1 增加聊天 1 month ago
.istanbul.yml f2d1f582c1 增加聊天 1 month ago
.npmignore f2d1f582c1 增加聊天 1 month ago
.travis.yml f2d1f582c1 增加聊天 1 month ago
LICENSE f2d1f582c1 增加聊天 1 month ago
README.md f2d1f582c1 增加聊天 1 month ago
index.js f2d1f582c1 增加聊天 1 month ago
package.json f2d1f582c1 增加聊天 1 month 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.