Closed
Description
Feature description
An algorithm that given a string formatted as snake_case returns it as camelCase or PascalCase depending on Boolean parameter.
Examples:
def snake_to_camel_case(input: str, use_pascal: bool = False) -> str
snake_to_camel_case('some_string_in_snake_case') -> 'someStringInSnakeCase'
snake_to_camel_case('some_string_in_snake_case', True) -> 'SomeStringInSnakeCase'
Would you like to work on this feature?
- Yes, I want to work on this feature!