_.capitalize

_.capitalize([string=''])

source npm package

Converts the first character of string to upper case and the remaining to lower case.

Since

3.0.0

Arguments

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

Returns

(string): Returns the capitalized string.

Example

_.capitalize('FRED');
// => 'Fred'