cleanup, docs

This commit is contained in:
root
2026-06-16 12:21:31 +00:00
parent dff1959341
commit ea08d5f28b
296 changed files with 1571 additions and 1940 deletions
+4 -10
View File
@@ -17,14 +17,8 @@ Pass a `bool` variable for `ok` so callers can distinguish invalid input from a
Example:
```uce
:example
bool ok = false;
String decoded = base64_decode("aGVsbG8=", ok);
// ok == true
// decoded == "hello"
```
Related:
- PHP: `base64_decode($value, true)`
- JavaScript / Node.js: `Buffer.from(value, "base64")`
print(base64_decode("aGVsbG8=", ok), " ", ok ? "ok" : "bad", "\n");