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"
}
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"
}