> For the complete documentation index, see [llms.txt](https://dbd-ts.gitbook.io/dbdts/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dbd-ts.gitbook.io/dbdts/functions/makereturn.md).

# $makeReturn

Removes excess/useless spaces from the provided text.

### Usage

```php
$makeReturn[text]
```

This function has one param.

| Param | Description                             | Type   | Required |
| ----- | --------------------------------------- | ------ | -------- |
| text  | The text to remove excess spacing from. | String | Yes      |

### Example

```javascript
bot.commands.add({
    type: "basicCommand",
    name: "example",
    code: `$makeReturn[a   b   c]` //Returns "a b c"
})
```
