Function camel

Source
pub fn camel(words: &[&str]) -> Vec<String>
Expand description

Makes the first word lowercase and the remaining capitalized.

assert_eq!(
    vec!["case", "Conversion", "Library"],
    pattern::camel(&["Case", "CONVERSION", "library"])
);