Module lodash_rust::camel_case

source ·
Expand description

Converts String to camel case.

Example

use lodash_rust::camel_case;
 
fn main() {
 let value = String::from("enable 6h format");
 let res = camel_case::new(value);
 println!("{res}") // enable6HFormat
}

Functions