Skip to content

base64_decode

Description:

This function demonstrates the usage of the base64_decode API.

Example:

-- Decode a base64 string
local decoded = base64_decode('encoded_text')

print("Decoded text:", decoded)