2
0
mirror of synced 2025-02-24 03:58:06 +00:00
2019-11-01 23:33:51 +09:00
..
2019-10-17 01:12:03 +09:00
2019-10-17 01:12:03 +09:00
2019-10-17 01:12:03 +09:00
2019-05-14 18:25:46 -04:00
2019-10-17 01:12:03 +09:00
2019-05-14 18:25:46 -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