camelCase

String
since 3.0.0

Arguments

  • string The string to convert.

Returns

string the camel cased string.

Converts string to camel case.

Example of Lodash _.camelCase

_.camelCase('Foo Bar');
// => 'fooBar'

_.camelCase('--foo-bar--');
// => 'fooBar'

_.camelCase('__FOO_BAR__');
// => 'fooBar'