pub fn group_digits(value: u64, separator: &str) -> String
Formats integer with digits in groups of three.
assert_eq!(ml_progress::group_digits(12345, " "), "12 345");