Skip to content

Base64

Helper functions having to do with Base64.

function decodeBase64(base64String): string;

Defined in: functions/base64.ts:10

Helper function to decode a base64-encoded string to a UTF-8 string.

Parameter Type
base64String string

string


function encodeBase64(string): string;

Defined in: functions/base64.ts:18

Helper function to encode a string into a base64-encoded string.

Parameter Type
string string

string