Converts strings from snake_case or other formats to camelCase.
Arguments
- x
Character vector to convert.
Value
Character vector in camelCase.
Examples
to_camel_case("first_name")
#> [1] "firstName"
#> "firstName"
to_camel_case("gift_amount")
#> [1] "giftAmount"
#> "giftAmount"