kebabCaseToCamelCase
Convert a String for a name that is using kebab-case into camelCase.
For example, "example-text" to "exampleText"
This is often but NOT ALWAYS the inverse of camelCaseToKebabCase, if there were acronyms in the original text. For example, "exampleABC" will get converted to "example-abc", which, when inversed, will become "exampleAbc".