plano/crates/common/src/utils.rs

8 lines
143 B
Rust
Raw Normal View History

2025-05-12 12:55:59 -07:00
pub fn shorten_string(s: &str) -> String {
2025-05-13 16:27:47 -07:00
if s.len() > 80 {
format!("{}...", &s[..80])
} else {
s.to_string()
}
2025-05-12 12:55:59 -07:00
}