duckscriptsdk 0.11.1

The duckscript SDK.
Documentation
```sh
var = trim value
```

Returns the provided value with leading and trailing whitespace removed.

### Parameters

The value to trim.

### Return Value

The trimmed value. If no input provided, this command will return none.

### Examples

```sh
# trimmed will now hold "some  text"
trimmed = trim "  some  text   "
```