0.2.0 • Published 1 year ago

base64x v0.2.0

Weekly downloads
-
License
Unlicense
Repository
github
Last release
1 year ago

Base64x: Base64 encoder/decoder with customizable lookup tables

Basic Usage:

import { Base64x } from 'base64x';

const base64x = new Base64x('abcdefghijklmnopqrstuvwxyz+/0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ');
const encoded = base64x.encode("arbitrary string");

console.log(encoded);                 // "yxj6+xrMyxjTihnO0A9IzK=="
console.log(base64x.decode(encoded)); // "arbitrary string"
0.2.0

1 year ago

0.1.1

1 year ago

0.1.0

1 year ago

0.0.1

1 year ago