deepsea ca9f471156 first commit vor 1 Jahr
..
.editorconfig ca9f471156 first commit vor 1 Jahr
.istanbul.yml ca9f471156 first commit vor 1 Jahr
.npmignore ca9f471156 first commit vor 1 Jahr
.travis.yml ca9f471156 first commit vor 1 Jahr
LICENSE ca9f471156 first commit vor 1 Jahr
README.md ca9f471156 first commit vor 1 Jahr
index.js ca9f471156 first commit vor 1 Jahr
package.json ca9f471156 first commit vor 1 Jahr

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.