Remove ANSI escape codes from the string.
Text to remove ANSI escape codes from
Text without ANSI escape codes
import { red, stripAnsiCode } from "@std/internal/styles";console.log(stripAnsiCode(red("Hello, world!"))); // Prints "Hello, world!" Copy
import { red, stripAnsiCode } from "@std/internal/styles";console.log(stripAnsiCode(red("Hello, world!"))); // Prints "Hello, world!"
Remove ANSI escape codes from the string.