_.capitalize([string=''])
转换字符串首字母为大写,剩下为小写。
[string=''] (string)
要大写开头的字符串
返回大写开头的字符串
_.capitalize('FRED'); // => 'Fred'