decode_base64
Decodes bytes as Base64.
decode_base64(bytes: blob|string) -> blob
Description
Section titled “Description”Decodes bytes as Base64.
bytes: blob|string
Section titled “bytes: blob|string”The value to decode as Base64.
Examples
Section titled “Examples”Decode a Base64 encoded string
Section titled “Decode a Base64 encoded string”from {bytes: "VGVuemly"}decoded = bytes.decode_base64()
{bytes: "VGVuemly", decoded: "Tenzir"}