> For the complete documentation index, see [llms.txt](https://bryan-guner.gitbook.io/my-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://bryan-guner.gitbook.io/my-docs/redux/repos/examples/real-world/node_modules/is-arrayish.md).

# node-is-arrayish

> Determines if an object can be used like an Array

## Example

```javascript
var isArrayish = require('is-arrayish');

isArrayish([]); // true
isArrayish({__proto__: []}); // true
isArrayish({}); // false
isArrayish({length:10}); // false
```

## License

Licensed under the [MIT License](http://opensource.org/licenses/MIT). You can find a copy of it in [LICENSE](https://github.com/bgoonz/Learning-Redux/blob/master/repos/examples/real-world/node_modules/is-arrayish/LICENSE/README.md).
