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