unis_crm/frontend/node_modules/strip-ansi
kangwenjing 482b9b5877 1 2026-03-19 14:27:20 +08:00
..
index.d.ts 1 2026-03-19 14:27:20 +08:00
index.js 1 2026-03-19 14:27:20 +08:00
license 1 2026-03-19 14:27:20 +08:00
package.json 1 2026-03-19 14:27:20 +08:00
readme.md 1 2026-03-19 14:27:20 +08:00

readme.md

strip-ansi

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.

Install

npm install strip-ansi

Usage

import stripAnsi from 'strip-ansi';

stripAnsi('\u001B[4mUnicorn\u001B[0m');
//=> 'Unicorn'

stripAnsi('\u001B]8;;https://github.com\u0007Click\u001B]8;;\u0007');
//=> 'Click'

Maintainers