# is-arrayish

> Determines if an object can be used as an array

Latest version **0.3.4** (published 2025-09-13) · MIT license · 0 weekly downloads

## Install

```sh
npm install is-arrayish
pnpm add is-arrayish
yarn add is-arrayish
bun add is-arrayish
```

## Health

**Score 45/100 (D)** — status: stable.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

## Facts

| | |
|---|---|
| Version | 0.3.4 |
| Published | 2025-09-13 |
| First published | 2015-08-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 3.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 17 |
| Author | Qix |
| Maintainers | qix |
| Keywords | is, array, duck, type, arrayish, similar, proto, prototype, type |

## Links

- npm: https://www.npmjs.com/package/is-arrayish
- Repository: https://github.com/qix-/node-is-arrayish
- Homepage: https://github.com/qix-/node-is-arrayish#readme
- Issues: https://github.com/qix-/node-is-arrayish/issues
- npm.io page: https://npm.io/package/is-arrayish

## Alternatives

- [memory-cache](https://npm.io/package/memory-cache.md) — 795.0K weekly downloads
- [@httptoolkit/proxy-agent](https://npm.io/package/@httptoolkit/proxy-agent.md) — 11.2K weekly downloads
- [express-cache-controller](https://npm.io/package/express-cache-controller.md) — 5.3K weekly downloads
- [http-cache-middleware](https://npm.io/package/http-cache-middleware.md) — 4.5K weekly downloads
- [cache2](https://npm.io/package/cache2.md) — 1.5K weekly downloads

## Recent versions

- 0.3.4 (latest) — 2025-09-13
- 0.3.2 — 2018-06-19
- 0.3.1 — 2016-11-16
- 0.3.0 — 2016-01-23
- 0.2.1 — 2015-08-31
- 0.2.0 — 2015-08-25
- 0.1.1 — 2015-08-25
- 0.1.0 — 2015-08-25

## README

# node-is-arrayish [![Travis-CI.org Build Status](https://img.shields.io/travis/Qix-/node-is-arrayish.svg?style=flat-square)](https://travis-ci.org/Qix-/node-is-arrayish) [![Coveralls.io Coverage Rating](https://img.shields.io/coveralls/Qix-/node-is-arrayish.svg?style=flat-square)](https://coveralls.io/r/Qix-/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](LICENSE).

---
_Source: https://npm.io/package/is-arrayish · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
