Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
392 B
Plaintext
Raw Permalink Normal View History

{
"name": "from_base64",
2020-07-02 01:46:48 +01:00
"groups": ["Conversions"],
"type": "function",
2020-05-20 09:51:16 +10:00
"description": "Decodes a string in the Base64 encoding into a binary value.",
2022-01-13 08:56:17 -05:00
"arguments": [{
"arg": "string",
"description": "the string to decode"
}],
"examples": [{
"expression": "from_base64('UUdJUw==')",
"returns": "'QGIS'"
}],
"tags": ["encoding", "base", "binary", "decodes"]
}