You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

readme.md 856B

123456789101112131415161718192021222324252627282930313233343536
  1. # has-ansi [![Build Status](https://travis-ci.org/sindresorhus/has-ansi.svg?branch=master)](https://travis-ci.org/sindresorhus/has-ansi)
  2. > Check if a string has [ANSI escape codes](http://en.wikipedia.org/wiki/ANSI_escape_code)
  3. ## Install
  4. ```
  5. $ npm install --save has-ansi
  6. ```
  7. ## Usage
  8. ```js
  9. var hasAnsi = require('has-ansi');
  10. hasAnsi('\u001b[4mcake\u001b[0m');
  11. //=> true
  12. hasAnsi('cake');
  13. //=> false
  14. ```
  15. ## Related
  16. - [has-ansi-cli](https://github.com/sindresorhus/has-ansi-cli) - CLI for this module
  17. - [strip-ansi](https://github.com/sindresorhus/strip-ansi) - Strip ANSI escape codes
  18. - [ansi-regex](https://github.com/sindresorhus/ansi-regex) - Regular expression for matching ANSI escape codes
  19. - [chalk](https://github.com/sindresorhus/chalk) - Terminal string styling done right
  20. ## License
  21. MIT © [Sindre Sorhus](http://sindresorhus.com)