@into-the-fathom/base64
v1.1.0
Published
Base64 coder.
Downloads
156
Readme
Base64 Coder
function decode(textData: string): Uint8Array
Decodes a base64 encoded string into the binary data.
import * as base64 from "@into-the-fathom/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 "@into-the-fathom/base64";
let data = [ ];
let encodedData = base64.encode(data);
console.log(encodedData);
// "..."
License
MIT License