lowerFirst

String
since 4.0.0

Arguments

  • string The string to convert.

Returns

string the converted string.

Converts the first character of string to lower case.

Example of Lodash _.lowerFirst

_.lowerFirst('Fred');
// => 'fred'

_.lowerFirst('FRED');
// => 'fRED'