Sha256: e01614fdc97f9579cd93894efa906f5f372daa97cd3eaa9c7c350091c8b4ac4a
Contents?: true
Size: 843 Bytes
Versions: 224
Compression:
Stored size: 843 Bytes
Contents
# strip-ansi [](https://travis-ci.org/sindresorhus/strip-ansi) > Strip [ANSI escape codes](http://en.wikipedia.org/wiki/ANSI_escape_code) ## Install ``` $ npm install --save strip-ansi ``` ## Usage ```js var stripAnsi = require('strip-ansi'); stripAnsi('\u001b[4mcake\u001b[0m'); //=> 'cake' ``` ## Related - [strip-ansi-cli](https://github.com/sindresorhus/strip-ansi-cli) - CLI for this module - [has-ansi](https://github.com/sindresorhus/has-ansi) - Check if a string has ANSI escape codes - [ansi-regex](https://github.com/sindresorhus/ansi-regex) - Regular expression for matching ANSI escape codes - [chalk](https://github.com/sindresorhus/chalk) - Terminal string styling done right ## License MIT © [Sindre Sorhus](http://sindresorhus.com)
Version data entries
224 entries across 81 versions & 5 rubygems