ethers.js/packages/base64
Richard Moore f308ba3540
Updated dist files (sorted package.json to reduce package version change chatter).
2019-11-23 21:38:13 +09:00
..
lib Updated dist files (sorted package.json to reduce package version change chatter). 2019-11-23 21:38:13 +09:00
lib.esm Updated dist files (sorted package.json to reduce package version change chatter). 2019-11-23 21:38:13 +09:00
src.ts Updated dist files (sorted package.json to reduce package version change chatter). 2019-11-23 21:38:13 +09:00
.gitignore Major overhaul in compilation to enable ES6 module generation. 2019-08-25 02:39:20 -04:00
.npmignore Update dist files. 2019-10-17 01:12:03 +09:00
LICENSE.md Initial v5 branch commit. 2019-05-14 18:25:46 -04:00
README.md Initial v5 branch commit. 2019-05-14 18:25:46 -04:00
package.json Updated dist files (sorted package.json to reduce package version change chatter). 2019-11-23 21:38:13 +09:00
tsconfig.json Major overhaul in compilation to enable ES6 module generation. 2019-08-25 02:39:20 -04:00

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