Convert a unix timestamp to a `YYYY-MM-dd` format.
## time()
Current time.
# String manipulation
## replace(str, match, replacement)
Replace text in a string. `match` can either be a literal string or a regular expression: `replace("hello", "ell", "all")` would produce “hallo”, and `replace("hello", /l/, "b")` would produce “hebbo”.
## json(obj)
Convert the argument to a JSON string (for debugging purposes).