trim
Remove whitespace from both ends of a string.
string(required): the string to trim
utlx
trim(" hello ") // "hello"
// Use case: clean up CSV values
map($input, (row) -> mapValues(row, (v) -> if (isString(v)) trim(v) else v))