转换整体的字符串为大写
要转换的字符串
返回大写的字符串
_.toUpper('--foo-bar'); // => '--FOO-BAR' _.toUpper('fooBar'); // => 'FOOBAR' _.toUpper('__foo_bar__'); // => '__FOO_BAR__'