# urlb64touint8array

> A javscript utility function which converts the base 64 safe encoded string to UInt8Array.

Latest version **1.0.3** (published 2018-02-12) · MIT license · 0 weekly downloads

## Install

```sh
npm install urlb64touint8array
pnpm add urlb64touint8array
yarn add urlb64touint8array
bun add urlb64touint8array
```

## 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.3 |
| Published | 2018-02-12 |
| First published | 2018-02-12 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 1.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Galeel Bhasha Satthar |
| Maintainers | gbhasha |
| Keywords | base64, array, base, convert, uint8, url, uint8array |

## Links

- npm: https://www.npmjs.com/package/urlb64touint8array
- Repository: https://github.com/gbhasha/base64-to-uint8array
- Homepage: https://github.com/gbhasha/base64-to-uint8array#readme
- Issues: https://github.com/gbhasha/base64-to-uint8array/issues
- npm.io page: https://npm.io/package/urlb64touint8array

## Alternatives

- [base64url](https://npm.io/package/base64url.md) — 6.1M weekly downloads
- [get-installed-path](https://npm.io/package/get-installed-path.md) — 502.9K weekly downloads
- [@uppy/url](https://npm.io/package/@uppy/url.md) — 185.8K weekly downloads
- [@d3fc/d3fc-shape](https://npm.io/package/@d3fc/d3fc-shape.md) — 16.2K weekly downloads
- [localizer](https://npm.io/package/localizer.md) — 226 weekly downloads

## Recent versions

- 1.0.3 (latest) — 2018-02-12
- 1.0.2 — 2018-02-12
- 1.0.1 — 2018-02-12
- 1.0.0 — 2018-02-12

## README

# urlb64touint8array

The [Uint8Array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array) typed array represents an array of 8-bit unsigned integers. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).

## General use case:

Used while exchanging secret key between client and server.

## Installation
```
npm install urlb64touint8array
```

## Usage
```js
import toUint8Array from 'urlb64touint8array';
```

or

```js
var toUint8Array = require('urlb64touint8array');
```

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