1
0
Fork 0
react-playground/node_modules/is-arrayish
2025-08-25 17:46:11 +02:00
..
.editorconfig worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
.istanbul.yml worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
.npmignore worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
.travis.yml worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
index.js worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
LICENSE worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
package.json worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
README.md worked on GarageApp stuff 2025-08-25 17:46:11 +02:00

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.