Dieses Repository beinhaltet HTML- und Javascript Code zur einer NotizenWebApp auf Basis von Web Storage. Zudem sind Mocha/Chai Tests im Browser enthalten. https://meinenotizen.netlify.app/
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 868B

4 years ago
123456789101112131415161718192021222324252627282930313233343536373839
  1. # strip-ansi [![Build Status](https://travis-ci.org/chalk/strip-ansi.svg?branch=master)](https://travis-ci.org/chalk/strip-ansi)
  2. > Strip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code)
  3. ## Install
  4. ```
  5. $ npm install strip-ansi
  6. ```
  7. ## Usage
  8. ```js
  9. const stripAnsi = require('strip-ansi');
  10. stripAnsi('\u001B[4mUnicorn\u001B[0m');
  11. //=> 'Unicorn'
  12. ```
  13. ## Related
  14. - [strip-ansi-cli](https://github.com/chalk/strip-ansi-cli) - CLI for this module
  15. - [has-ansi](https://github.com/chalk/has-ansi) - Check if a string has ANSI escape codes
  16. - [ansi-regex](https://github.com/chalk/ansi-regex) - Regular expression for matching ANSI escape codes
  17. - [chalk](https://github.com/chalk/chalk) - Terminal string styling done right
  18. ## Maintainers
  19. - [Sindre Sorhus](https://github.com/sindresorhus)
  20. - [Josh Junon](https://github.com/qix-)
  21. ## License
  22. MIT