Converts the string to camelcase
camelCase("some_database_field_name"); // "someDatabaseFieldName"
camelCase("Some label that needs to be camelized"); // "someLabelThatNeedsToBeCamelized"
camelCase("some-javascript-property"); // "someJavascriptProperty"
camelCase("some-mixed_string with spaces_underscores-and-hyphens");// "someMixedStringWithSpacesUnderscoresAndHyphens"
Generated using TypeDoc
Converts the string to camelcase
Example
Example
Example
Example