trim
removes all whitepace from the beginning and end of a string. This
includes linebreaks.
(trim " hello\nworld ")
➜"hello\nworld"
(trim "\n")
➜""
value
is an arbitrary expression.
Returns a copy of the string with leading and trailing whitespace removed.