pub fn camel(words: &[&str]) -> Vec<String>
Makes the first word lowercase and the remaining capitalized.
assert_eq!( vec!["case", "Conversion", "Library"], pattern::camel(&["Case", "CONVERSION", "library"]) );