Base64
Helper functions having to do with Base64.
Functions
Section titled “Functions”decodeBase64()
Section titled “decodeBase64()”function decodeBase64(base64String): string;Defined in: functions/base64.ts:10
Helper function to decode a base64-encoded string to a UTF-8 string.
Parameters
Section titled “Parameters”| Parameter | Type |
|---|---|
base64String |
string |
Returns
Section titled “Returns”string
encodeBase64()
Section titled “encodeBase64()”function encodeBase64(string): string;Defined in: functions/base64.ts:18
Helper function to encode a string into a base64-encoded string.
Parameters
Section titled “Parameters”| Parameter | Type |
|---|---|
string |
string |
Returns
Section titled “Returns”string
