CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
readme.md47 linesDownload Raw Back to strip-ansi
1# strip-ansi [![Build Status](https://travis-ci.org/chalk/strip-ansi.svg?branch=master)](https://travis-ci.org/chalk/strip-ansi)2 3> Strip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) from a string4 5 6## Install7 8```9$ npm install strip-ansi10```11 12 13## Usage14 15```js16const stripAnsi = require('strip-ansi');17 18stripAnsi('\u001B[4mUnicorn\u001B[0m');19//=> 'Unicorn'20 21stripAnsi('\u001B]8;;https://github.com\u0007Click\u001B]8;;\u0007');22//=> 'Click'23```24 25 26## strip-ansi for enterprise27 28Available as part of the Tidelift Subscription.29 30The maintainers of strip-ansi and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-strip-ansi?utm_source=npm-strip-ansi&utm_medium=referral&utm_campaign=enterprise&utm_term=repo)31 32 33## Related34 35- [strip-ansi-cli](https://github.com/chalk/strip-ansi-cli) - CLI for this module36- [strip-ansi-stream](https://github.com/chalk/strip-ansi-stream) - Streaming version of this module37- [has-ansi](https://github.com/chalk/has-ansi) - Check if a string has ANSI escape codes38- [ansi-regex](https://github.com/chalk/ansi-regex) - Regular expression for matching ANSI escape codes39- [chalk](https://github.com/chalk/chalk) - Terminal string styling done right40 41 42## Maintainers43 44- [Sindre Sorhus](https://github.com/sindresorhus)45- [Josh Junon](https://github.com/qix-)46 47 
basant307/AI_Governance_Project · CoolFace