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