5.7.6 • Published 1 year ago

boaproject-base64 v5.7.6

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

Base64 Coder

function decode(textData: string): Uint8Array

Decodes a base64 encoded string into the binary data.

import * as base64 from "boaproject-base64";

let encodedData = "...";
let data = base64.decode(encodedData);
console.log(data);
// { Uint8Array: [] }

function encode(data: Arrayish): string

Decodes a base64 encoded string into the binary data.

import * as base64 from "boaproject-base64";

let data = [ ];
let encodedData = base64.encode(data);
console.log(encodedData);
// "..."

License

MIT License

5.7.6

1 year ago

5.7.5

1 year ago

5.7.4

1 year ago

5.7.3

1 year ago

5.7.2

1 year ago

5.7.1

1 year ago

5.7.0

1 year ago