Search Docs
toLowerCase
将 str 中的所有字符转换为小写。
str
import { toLowerCase } from 'funtool/string' toLowerCase('HELLO') // => 'hello' ✅ toLowerCase(123) // => '123' ✅
function toLowerCase(str: string): string
string