xiongzhu abfe06b311 first commit 2 سال پیش
..
lib abfe06b311 first commit 2 سال پیش
lib.esm abfe06b311 first commit 2 سال پیش
src.ts abfe06b311 first commit 2 سال پیش
LICENSE.md abfe06b311 first commit 2 سال پیش
README.md abfe06b311 first commit 2 سال پیش
package.json abfe06b311 first commit 2 سال پیش

README.md

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