Search Docs
trimStart
Removes whitespace from the left end of the str.
str
import { trimStart } from 'funtool/string' trimStart(' hello') // => 'hello' ✅ trimStart(123) // => '123' ✅
function trimStart(str: string): string
string