pub fn camel(string: &str) -> String
Converts any case into camelCase.
use conform::make::camel; assert_eq!(camel("foo bar"), "fooBar".to_string());