Returns the camel case representation of the given string
Optional
the source string to inspect
the camel case representation of the given string
toCamelCase('FOO BAR'); // 'fooBar'toCamelCase('--foo-bar--'); // 'fooBar'toCamelCase('__FOO_BAR__'); // 'fooBar' Copy
toCamelCase('FOO BAR'); // 'fooBar'toCamelCase('--foo-bar--'); // 'fooBar'toCamelCase('__FOO_BAR__'); // 'fooBar'
Returns the camel case representation of the given string