camel-case
$camel-case
Converts a string value to camelCase format. Words are identified by spaces, hyphens, underscores, or case changes. The first letter is lowercased, and subsequent words are capitalized with no separators. Safe to use in normalize phase (non-throwing).
Input examples:
"hello world"→ Output:"helloWorld""foo-bar-baz"→ Output:"fooBarBaz""user_name_id"→ Output:"userNameId""HTTPSConnection"→ Output:"httpsConnection"