pub fn uppercase_first_char<S: AsRef<str>>(s: S) -> String
Uppercase first char
assert_eq!("Abc", toolkit::text::uppercase_first_char("abc"));