str_to_camel: Convert between different types of programming case
Description
str_to_camel() converts to camel case, where the first letter of
each word is capitalized, with no separation between words. By default
the first letter of the first word is not capitalized.
str_to_kebab() converts to kebab case, where words are converted to
lower case and separated by dashes (-).
str_to_snake() converts to snake case, where words are converted to
lower case and separated by underscores (_).
Usage
str_to_camel(string, first_upper = FALSE)
str_to_snake(string)
str_to_kebab(string)
Arguments
string
Input vector. Either a character vector, or something
coercible to one.