Skip to main content

lcfirst

Function lcfirst 

Source
pub fn lcfirst(s: &str) -> String
Expand description

First character lowercase (Unicode-aware).

use oxios_markdown::parser::lcfirst;
assert_eq!(lcfirst("Hello"), "hello");
assert_eq!(lcfirst(""), "");