MIF_E31222707/node_modules/is-arrayish
adeliaala 0d288a48b9 done 2025-07-15 13:57:20 +07:00
..
.editorconfig done 2025-07-15 13:57:20 +07:00
.istanbul.yml done 2025-07-15 13:57:20 +07:00
.npmignore done 2025-07-15 13:57:20 +07:00
.travis.yml done 2025-07-15 13:57:20 +07:00
LICENSE done 2025-07-15 13:57:20 +07:00
README.md done 2025-07-15 13:57:20 +07:00
index.js done 2025-07-15 13:57:20 +07:00
package.json done 2025-07-15 13:57:20 +07: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.