pub fn strip_ansi_unlikely(string: &str) -> Cow<'_, str>
Expand description

Removes ANSI escape codes and some ASCII control characters

Optimized for strings that rarely contain ANSI control chars. Uses fast search to avoid reallocations.

Keeps \n removes \r, \t etc.

If parsing fails silently returns the input string