pub fn noop(words: &[&str]) -> Vec<String>
The no-op pattern performs no mutations.
assert_eq!( vec!["Case", "CONVERSION", "library"], pattern::noop(&["Case", "CONVERSION", "library"]) );