Home > @infiniteobjects/core-library-web > ChangeCase > lowerFirst
Converts the first character of string
to lower case.
Signature:
static lowerFirst(str: string): string;
Parameter | Type | Description |
---|---|---|
str | string |
Returns:
string
ChangeCase.lowerFirst('Foobar')
// => 'foobar'