|
|
5 dienas atpakaļ | |
|---|---|---|
| .. | ||
| index.d.ts | 5 dienas atpakaļ | |
| index.js | 5 dienas atpakaļ | |
| license | 5 dienas atpakaļ | |
| package.json | 5 dienas atpakaļ | |
| readme.md | 5 dienas atpakaļ | |
Strip ANSI escape codes from a string
[!NOTE] Node.js has this built-in now with
stripVTControlCharacters. The benefit of this package is consistent behavior across Node.js versions and faster improvements. The Node.js version is actually based on this package.
npm install strip-ansi
import stripAnsi from 'strip-ansi';
stripAnsi('\u001B[4mUnicorn\u001B[0m');
//=> 'Unicorn'
stripAnsi('\u001B]8;;https://github.com\u0007Click\u001B]8;;\u0007');
//=> 'Click'