Converts string to camel case.
string
The string to convert.
Returns the camel cased string.
5.5.0
[[lowerCase]], [[kebabCase]], [[snakeCase]], [[startCase]], [[upperCase]], [[upperFirst]]
camelCase('Foo Bar')// => 'fooBar'camelCase('--foo-bar--')// => 'fooBar'camelCase('__FOO_BAR__')// => 'fooBar' Copy
camelCase('Foo Bar')// => 'fooBar'camelCase('--foo-bar--')// => 'fooBar'camelCase('__FOO_BAR__')// => 'fooBar'
Converts
string
to camel case.