quartz/wallet/node_modules/@ethersproject/base64
2022-03-04 20:05:23 +08:00
..
lib Initialising for #8 2022-03-04 20:05:23 +08:00
lib.esm Initialising for #8 2022-03-04 20:05:23 +08:00
src.ts Initialising for #8 2022-03-04 20:05:23 +08:00
LICENSE.md Initialising for #8 2022-03-04 20:05:23 +08:00
package.json Initialising for #8 2022-03-04 20:05:23 +08:00
README.md Initialising for #8 2022-03-04 20:05:23 +08:00

Base64 Coder

function decode(textData: string): Uint8Array

Decodes a base64 encoded string into the binary data.

import * as base64 from "@ethersproject/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 "@ethersproject/base64";

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

License

MIT License