You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
349 B
15 lines
349 B
/** |
|
Strip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) from a string. |
|
|
|
@example |
|
``` |
|
import stripAnsi from 'strip-ansi'; |
|
|
|
stripAnsi('\u001B[4mUnicorn\u001B[0m'); |
|
//=> 'Unicorn' |
|
|
|
stripAnsi('\u001B]8;;https://github.com\u0007Click\u001B]8;;\u0007'); |
|
//=> 'Click' |
|
``` |
|
*/ |
|
export default function stripAnsi(string: string): string;
|
|
|