2022-01-13 08:56:17 -05:00

16 lines
425 B
Plaintext

{
"name": "trim",
"type": "function",
"groups": ["String"],
"description": "Removes all leading and trailing whitespace (spaces, tabs, etc) from a string.",
"arguments": [{
"arg": "string",
"description": "string to trim"
}],
"examples": [{
"expression": "trim(' hello world ')",
"returns": "'hello world'"
}],
"tags": ["removes", "leading", "whitespace", "spaces", "tabs", "trailing"]
}