forked from lavender/watch-party
7 lines
165 B
Rust
7 lines
165 B
Rust
|
pub fn truncate_str(s: &str, max_chars: usize) -> &str {
|
||
|
match s.char_indices().nth(max_chars) {
|
||
|
None => s,
|
||
|
Some((idx, _)) => &s[..idx],
|
||
|
}
|
||
|
}
|