upperFirst source npm

_.upperFirst([string=''])

Converts the first character of string to upper case.

Arguments

  1. [string=''] (string)

    The string to convert.

Returns (string)

Returns the converted string.

Example

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

_.upperFirst('FRED');
// => 'FRED'