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.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # strip-bom [![Build Status](https://travis-ci.org/sindresorhus/strip-bom.svg?branch=master)](https://travis-ci.org/sindresorhus/strip-bom)
  2. > Strip UTF-8 [byte order mark](https://en.wikipedia.org/wiki/Byte_order_mark#UTF-8) (BOM) from a string
  3. From Wikipedia:
  4. > The Unicode Standard permits the BOM in UTF-8, but does not require nor recommend its use. Byte order has no meaning in UTF-8.
  5. ---
  6. <div align="center">
  7. <b>
  8. <a href="https://tidelift.com/subscription/pkg/npm-strip-bom?utm_source=npm-strip-bom&utm_medium=referral&utm_campaign=readme">Get professional support for 'strip-bom' with a Tidelift subscription</a>
  9. </b>
  10. <br>
  11. <sub>
  12. Tidelift helps make open source sustainable for maintainers while giving companies<br>assurances about security, maintenance, and licensing for their dependencies.
  13. </sub>
  14. </div>
  15. ---
  16. ## Install
  17. ```
  18. $ npm install strip-bom
  19. ```
  20. ## Usage
  21. ```js
  22. const stripBom = require('strip-bom');
  23. stripBom('\uFEFFunicorn');
  24. //=> 'unicorn'
  25. ```
  26. ## Security
  27. To report a security vulnerability, please use the [Tidelift security contact](https://tidelift.com/security). Tidelift will coordinate the fix and disclosure.
  28. ## Related
  29. - [strip-bom-cli](https://github.com/sindresorhus/strip-bom-cli) - CLI for this module
  30. - [strip-bom-buf](https://github.com/sindresorhus/strip-bom-buf) - Buffer version of this module
  31. - [strip-bom-stream](https://github.com/sindresorhus/strip-bom-stream) - Stream version of this module
  32. ## License
  33. MIT © [Sindre Sorhus](https://sindresorhus.com)