No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
rpm-mcarman b9f7ec4306 First Commit hace 3 años
..
.editorconfig First Commit hace 3 años
.istanbul.yml First Commit hace 3 años
.npmignore First Commit hace 3 años
.travis.yml First Commit hace 3 años
LICENSE First Commit hace 3 años
README.md First Commit hace 3 años
index.js First Commit hace 3 años
package.json First Commit hace 3 años

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.