pub fn trim_left(string: &str) -> String
Removes leading whitespaces.
use conform::make::trim_left; assert_eq!(trim_left(" foo "), "foo ".to_string());