1# strip-ansi [](https://travis-ci.org/chalk/strip-ansi) 2 3> Strip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) from a string 4 5 6## Install 7 8``` 9$ npm install strip-ansi 10``` 11 12 13## Usage 14 15```js 16const 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 enterprise 27 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## Related 34 35- [strip-ansi-cli](https://github.com/chalk/strip-ansi-cli) - CLI for this module 36- [strip-ansi-stream](https://github.com/chalk/strip-ansi-stream) - Streaming version of this module 37- [has-ansi](https://github.com/chalk/has-ansi) - Check if a string has ANSI escape codes 38- [ansi-regex](https://github.com/chalk/ansi-regex) - Regular expression for matching ANSI escape codes 39- [chalk](https://github.com/chalk/chalk) - Terminal string styling done right 40 41 42## Maintainers 43 44- [Sindre Sorhus](https://github.com/sindresorhus) 45- [Josh Junon](https://github.com/qix-) 46 47