Documentation Index
Fetch the complete documentation index at: https://errand.nuvrel.dev/llms.txt
Use this file to discover all available pages before exploring further.
base64encode(str) encodes str as standard base64 and returns the encoded string.
Signature
Example
Encode credentials for an HTTP Basic Auth header before passing them to a command:Notes
- The output uses standard base64 (with
+and/). Some systems expect URL-safe base64 (with-and_). Usereplaceto convert the+and/characters if needed. - For the reverse operation, use
base64decode.