A library for cutting a string while preserving colors.
```rust use ansicut::AnsiCut; use owocolors::{colors::*, OwoColorize};
pub fn main() {
let coloredtext = "When the night has come"
.fg::
println!("{}", cutted_text);
} ```
```rust use owo_colors::{colors::*, OwoColorize};
pub fn main() {
let coloredtext = "When the night has come"
.fg::
let chunks = ansi_cut::chunks(colored_text, 5);
} ```
Are any other usefull ansi sequense that would be usefull to keep in mind?