UNPKG

pretty-ansi

Version:

Convert ANSI escape sequences to human readable text

8 lines (6 loc) 200 B
/** * Converts [ANSI escape sequences](https://en.wikipedia.org/wiki/ANSI_escape_code) * into human readable text. */ declare function prettyAnsi(text: string): string; export default prettyAnsi;