Skip to content

$toLowerCase

$toLowerCase will change the given text from uppercase to lowercase.

Usage

$toLowerCase[text]

Parameters

FieldTypeDescriptionRequired
textstringThe text to change to lowercase.true

Example(s)

This will everything given to lowercase, in this case it would return aoi.js is great.:

1
client.command({
2
name: "toLowerCase",
3
code: `
4
$toLowerCase[AOI.JS IS GREAT.]
5
`
6
});