_.upperFirst([string=''])
转换首字母为大写。
[string=''] (string)
要转换的字符串
返回转换后的字符串
_.upperFirst('fred'); // => 'Fred' _.upperFirst('FRED'); // => 'FRED'