|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
369 bytes
|
| Line | |
|---|
| 1 | /**
|
|---|
| 2 | Strip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) from a string.
|
|---|
| 3 |
|
|---|
| 4 | @example
|
|---|
| 5 | ```
|
|---|
| 6 | import stripAnsi = require('strip-ansi');
|
|---|
| 7 |
|
|---|
| 8 | stripAnsi('\u001B[4mUnicorn\u001B[0m');
|
|---|
| 9 | //=> 'Unicorn'
|
|---|
| 10 |
|
|---|
| 11 | stripAnsi('\u001B]8;;https://github.com\u0007Click\u001B]8;;\u0007');
|
|---|
| 12 | //=> 'Click'
|
|---|
| 13 | ```
|
|---|
| 14 | */
|
|---|
| 15 | declare function stripAnsi(string: string): string;
|
|---|
| 16 |
|
|---|
| 17 | export = stripAnsi;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.