plano/crates/common/src/utils.rs

8 lines
143 B
Rust
Raw Normal View History

pub fn shorten_string(s: &str) -> String {
if s.len() > 80 {
format!("{}...", &s[..80])
} else {
s.to_string()
}
}