Function to_uppercase
pub fn to_uppercase(s: &str) -> StringExpand description
Common key transformation: convert to UPPERCASE.
ยงExamples
use noyalib::with::singleton_map_with::to_uppercase;
assert_eq!(to_uppercase("GetRequest"), "GETREQUEST");
assert_eq!(to_uppercase("post"), "POST");