Module start_case

Source
Expand description

Converts String to start case.

Example

use lodash_rust::start_case;
 
fn main() {
 let value = String::from("--foo-bar--")
 let res = start_case::new(value);
 println!("{res}") // "Foo Bar"
}

Functionsยง

new