Search Docs
toLowerCase
Converts all characters in the str to lowercase.
str
import { toLowerCase } from 'funtool/string' toLowerCase('HELLO') // => 'hello' ✅ toLowerCase(123) // => '123' ✅
function toLowerCase(str: string): string
string