# probase64

> Lightweight UTF-16 encoder

Latest version **1.0.2-r** (published 2018-04-02) · ISC license · 0 weekly downloads

## Install

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

## 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.2-r |
| Published | 2018-04-02 |
| First published | 2018-04-01 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 4.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Chris Pro |
| Maintainers | cryptix720 |

## Links

- npm: https://www.npmjs.com/package/probase64
- npm.io page: https://npm.io/package/probase64

## Recent versions

- 1.0.2-r (latest) — 2018-04-02
- 1.0.2 — 2018-04-02
- 1.0.1 — 2018-04-01
- 1.0.0 — 2018-04-01

## README

ProBase UTF-16
==============


### Install ###

There are a few ways you can get the `probase64` library.

#### Node ####

`probase64` is on `npm`. Simply run:

```js
npm install proBase64
```

Or add it to your `package.json` dependencies.

You can use it as follows:

```js
var ProBaseDec = require('ProBaseDec').ProBaseDec;
var ProBaseEnc = require('ProBaseEnc').ProBaseEnc;
```



### HTML Page Usage ###

```html
  <!-- Required for non-UTF encodings -->
  <script src="proBase64.js"></script>
```

And in your scripts:

```js
var ProBaseDec = window.ProBaseDec;
var ProBaseEnc = window.ProBaseEnc;
```

### API Overview ###

Basic Usage

```js
  var uint16array = new ProBaseEnc('utf-16').encode(string);
  var string = new ProBaseDec('utf-16').decode(uint16array);
```

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