mirror of
https://github.com/nodejs/node.git
synced 2025-05-17 19:53:13 +00:00

PR-URL: https://github.com/nodejs/node/pull/35474 Reviewed-By: Ruy Adorno <ruyadorno@github.com> Reviewed-By: Ujjwal Sharma <ryzokuken@disroot.org> Reviewed-By: Ben Coe <bencoe@gmail.com> Reviewed-By: Geoffrey Booth <webmaster@geoffreybooth.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Shelley Vohr <codebytere@gmail.com> Reviewed-By: Guy Bedford <guybedford@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
18 lines
369 B
TypeScript
18 lines
369 B
TypeScript
/**
|
|
Strip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) from a string.
|
|
|
|
@example
|
|
```
|
|
import stripAnsi = require('strip-ansi');
|
|
|
|
stripAnsi('\u001B[4mUnicorn\u001B[0m');
|
|
//=> 'Unicorn'
|
|
|
|
stripAnsi('\u001B]8;;https://github.com\u0007Click\u001B]8;;\u0007');
|
|
//=> 'Click'
|
|
```
|
|
*/
|
|
declare function stripAnsi(string: string): string;
|
|
|
|
export = stripAnsi;
|