pub fn remove_whitespace(s: String) -> String
Removes all whitespace from a string.
use wagon_utils::remove_whitespace; let s = " 1 2 3 ".to_string(); assert_eq!("123", remove_whitespace(s));