$toLowerCase
$toLowerCase will change the given text from uppercase to lowercase.
Usage
$toLowerCase[text]Parameters
| Field | Type | Description | Required | 
|---|---|---|---|
| text | string | The text to change to lowercase. | true | 
Example(s)
This will make everything given lowercase, in this case it would return aoi.js is great.:
1client.command({2    name: "toLowerCase",3    code: `4    $toLowerCase[AOI.JS IS GREAT.]5    `6});