plano/crates/common/src/utils.rs
2025-05-13 16:27:47 -07:00

7 lines
143 B
Rust

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