Appearance
function camelCase(value): string;
Converts a string to camelCase. 将字符串转换为 camelCase。
value
string
The camel-cased string / 转换后的 camelCase 字符串
camelCase('foo-bar') // => 'fooBar'
1.2.0