mirror of
https://github.com/katanemo/plano.git
synced 2026-05-05 13:53:03 +02:00
7 lines
143 B
Rust
7 lines
143 B
Rust
pub fn shorten_string(s: &str) -> String {
|
|
if s.len() > 80 {
|
|
format!("{}...", &s[..80])
|
|
} else {
|
|
s.to_string()
|
|
}
|
|
}
|