saepenatus
Version:
Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, mul
36 lines (25 loc) • 673 B
Markdown
Base64 Coder
============
function decode(textData: string): Uint8Array
---------------------------------------------
Decodes a base64 encoded string into the binary data.
```javascript
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.
```javascript
import * as base64 from "@ethersproject/base64";
let data = [ ];
let encodedData = base64.encode(data);
console.log(encodedData);
// "..."
```
License
=======
MIT License