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