lodashrust/string/
to_lower.rs

1pub fn to_lower(s: &str) -> String {
2    s.to_lowercase() // Convert the string to lowercase
3}