# typed-arrays

> Returns an array of all Typed Array classes.

Latest version **1.0.0** (published 2018-02-15) · MIT license · 0 weekly downloads

## Install

```sh
npm install typed-arrays
pnpm add typed-arrays
yarn add typed-arrays
bun add typed-arrays
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2018-02-15 |
| First published | 2018-02-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=5.0.0 |
| Dependencies | 0 |
| Unpacked size | 3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | John Lamansky |
| Maintainers | lamansky |
| Keywords | typed array, classes, Int8Array, Uint8Array, Uint8ClampedArray, Int16Array, Uint16Array, Int32Array, Uint32Array, Float32Array, Float64Array |

## Links

- npm: https://www.npmjs.com/package/typed-arrays
- Repository: https://github.com/lamansky/typed-arrays
- Issues: https://github.com/lamansky/typed-arrays/issues
- npm.io page: https://npm.io/package/typed-arrays

## Recent versions

- 1.0.0 (latest) — 2018-02-15

## README

# typed-arrays

Returns an array of all [Typed Array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Typed_arrays) classes: `Float32Array`, `Float64Array`, `Int8Array`, `Int16Array`, `Int32Array`, `Uint8Array`, `Uint8ClampedArray`, `Uint16Array`, and `Uint32Array`.

## Installation

Requires [Node.js](https://nodejs.org/) 5.0.0 or above.

```bash
npm i typed-arrays
```

## API

The module exports an object with two properties:

* `classes`: A function which, when called, will return an array of 9 Typed Array classes (functions).
* `names`: A function which, when called, will return an array of 9 Typed Array class name strings.

## Example

```javascript
const typedArrays = require('typed-arrays')

typedArrays.classes() // Array
typedArrays.names() // Array
```

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