to_lower(s: utf8) → utf8
Category: [strings](builtinsstrings)_
Lowercase every character of a string.
| Parameter | Type | Description | Remarks |
|---|---|---|---|
| s | utf8 | The string to lowercase. | — |
| returns | utf8 | The lowercased string. | — |
wcl
to_lower("AbC") // lowercase every character → "abc"