startCase source npm
_.startCase([string=''])
转换字符串为 start case
参数
- [string=''] (string)
要转换的字符串
返回值 (string)
返回转换后的字符串
示例
_.startCase('--foo-bar');
// => 'Foo Bar'
_.startCase('fooBar');
// => 'Foo Bar'
_.startCase('__foo_bar__');
// => 'Foo Bar'