_.lowerFirst

_.lowerFirst([string=''])

Converts the first character of string to lower case.

Since

4.0.0

Arguments

  1. [string=''] (string): The string to convert.

Returns

(string): Returns the converted string.

Example

_.lowerFirst('Fred');
// => 'fred'
 
_.lowerFirst('FRED');
// => 'fRED'
doc_Lodash
2016-11-27 16:38:49
Comments
Leave a Comment

Please login to continue.