Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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) from a string
  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. stripAnsi('\u001B]8;;https://github.com\u0007Click\u001B]8;;\u0007');
  13. //=> 'Click'
  14. ```
  15. ## strip-ansi for enterprise
  16. Available as part of the Tidelift Subscription.
  17. The 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)
  18. ## Related
  19. - [strip-ansi-cli](https://github.com/chalk/strip-ansi-cli) - CLI for this module
  20. - [strip-ansi-stream](https://github.com/chalk/strip-ansi-stream) - Streaming version of this module
  21. - [has-ansi](https://github.com/chalk/has-ansi) - Check if a string has ANSI escape codes
  22. - [ansi-regex](https://github.com/chalk/ansi-regex) - Regular expression for matching ANSI escape codes
  23. - [chalk](https://github.com/chalk/chalk) - Terminal string styling done right
  24. ## Maintainers
  25. - [Sindre Sorhus](https://github.com/sindresorhus)
  26. - [Josh Junon](https://github.com/qix-)