react-native-get-pixel_edit/node_modules/is-arrayish
2025-07-09 11:41:52 +09:00
..
.editorconfig init 2025-07-09 11:41:52 +09:00
.istanbul.yml init 2025-07-09 11:41:52 +09:00
.npmignore init 2025-07-09 11:41:52 +09:00
.travis.yml init 2025-07-09 11:41:52 +09:00
index.js init 2025-07-09 11:41:52 +09:00
LICENSE init 2025-07-09 11:41:52 +09:00
package.json init 2025-07-09 11:41:52 +09:00
README.md init 2025-07-09 11:41:52 +09: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.