字符串转驼峰
字符串
textCamelCase('foo-bar'); /// 'fooBar'textCamelCase('foo_bar'); /// 'fooBar'textCamelCase('foo bar'); /// 'fooBar'textCamelCase('foo.bar'); /// 'fooBar' Copy
textCamelCase('foo-bar'); /// 'fooBar'textCamelCase('foo_bar'); /// 'fooBar'textCamelCase('foo bar'); /// 'fooBar'textCamelCase('foo.bar'); /// 'fooBar'
字符串转驼峰