base64.to_string
base64.to_string
Function
Returns the original text held in a base64 object.
Syntax
base64(text).to_string()
Parameters
No parameters.
Return value
| Type | Description |
|---|---|
| String | Returns the text passed in during construction. |
Example
result = base64('BT').to_string() // Output: BT print result
Notes
- No encoding or decoding will be performed.