Converts a string to Camel case.
The input string to be converted.
The Camel case version of the input string.
const inputString = 'to_camel_case';const camelCaseString = toCamelCase(inputString);console.log(camelCaseString); // "toCamelCase" Copy
const inputString = 'to_camel_case';const camelCaseString = toCamelCase(inputString);console.log(camelCaseString); // "toCamelCase"
Generated using TypeDoc
Converts a string to Camel case.