2
0
mirror of synced 2025-02-23 19:48:28 +00:00
2020-08-25 01:53:48 -04:00
..
2020-08-25 01:53:48 -04:00
2020-08-25 01:53:48 -04:00
2020-08-25 01:53:48 -04:00
2019-10-17 01:12:03 +09:00
2019-05-14 18:25:46 -04:00
2020-08-25 01:53:48 -04: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