forked from lavender/watch-party
6 lines
165 B
Rust
6 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],
|
|
}
|
|
}
|