You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
1 year ago | |
|---|---|---|
| .. | ||
| lib | 1 year ago | |
| lib.esm | 1 year ago | |
| src.ts | 1 year ago | |
| LICENSE.md | 1 year ago | |
| README.md | 1 year ago | |
| package.json | 1 year ago | |
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