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