projecte_ionic/node_modules/is-arrayish
janmaroto b12369cb47 Conexio amb la api 2022-02-09 18:30:03 +01:00
..
.editorconfig Conexio amb la api 2022-02-09 18:30:03 +01:00
.istanbul.yml Conexio amb la api 2022-02-09 18:30:03 +01:00
.npmignore Conexio amb la api 2022-02-09 18:30:03 +01:00
.travis.yml Conexio amb la api 2022-02-09 18:30:03 +01:00
LICENSE Conexio amb la api 2022-02-09 18:30:03 +01:00
README.md Conexio amb la api 2022-02-09 18:30:03 +01:00
index.js Conexio amb la api 2022-02-09 18:30:03 +01:00
package.json Conexio amb la api 2022-02-09 18:30:03 +01:00

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.