Yankun168 4c5a9060d2 4.19授权码之前存档 il y a 1 an
..
.editorconfig 4c5a9060d2 4.19授权码之前存档 il y a 1 an
.istanbul.yml 4c5a9060d2 4.19授权码之前存档 il y a 1 an
.npmignore 4c5a9060d2 4.19授权码之前存档 il y a 1 an
.travis.yml 4c5a9060d2 4.19授权码之前存档 il y a 1 an
LICENSE 4c5a9060d2 4.19授权码之前存档 il y a 1 an
README.md 4c5a9060d2 4.19授权码之前存档 il y a 1 an
index.js 4c5a9060d2 4.19授权码之前存档 il y a 1 an
package.json 4c5a9060d2 4.19授权码之前存档 il y a 1 an

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.