• Converts the string to camelcase

    Example

    camelCase("some_database_field_name"); // "someDatabaseFieldName"
    

    Example

    camelCase("Some label that needs to be camelized"); // "someLabelThatNeedsToBeCamelized"
    

    Example

    camelCase("some-javascript-property"); // "someJavascriptProperty"
    

    Example

    camelCase("some-mixed_string with spaces_underscores-and-hyphens");
    // "someMixedStringWithSpacesUnderscoresAndHyphens"

    Parameters

    • str: string

    Returns string

Generated using TypeDoc