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

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # has-symbols <sup>[![Version Badge][2]][1]</sup>
  2. [![dependency status][5]][6]
  3. [![dev dependency status][7]][8]
  4. [![License][license-image]][license-url]
  5. [![Downloads][downloads-image]][downloads-url]
  6. [![npm badge][11]][1]
  7. Determine if the JS environment has Symbol support. Supports spec, or shams.
  8. ## Example
  9. ```js
  10. var hasSymbols = require('has-symbols');
  11. hasSymbols() === true; // if the environment has native Symbol support. Not polyfillable, not forgeable.
  12. var hasSymbolsKinda = require('has-symbols/shams');
  13. hasSymbolsKinda() === true; // if the environment has a Symbol sham that mostly follows the spec.
  14. ```
  15. ## Supported Symbol shams
  16. - get-own-property-symbols [npm](https://www.npmjs.com/package/get-own-property-symbols) | [github](https://github.com/WebReflection/get-own-property-symbols)
  17. - core-js [npm](https://www.npmjs.com/package/core-js) | [github](https://github.com/zloirock/core-js)
  18. ## Tests
  19. Simply clone the repo, `npm install`, and run `npm test`
  20. [1]: https://npmjs.org/package/has-symbols
  21. [2]: https://versionbadg.es/inspect-js/has-symbols.svg
  22. [5]: https://david-dm.org/inspect-js/has-symbols.svg
  23. [6]: https://david-dm.org/inspect-js/has-symbols
  24. [7]: https://david-dm.org/inspect-js/has-symbols/dev-status.svg
  25. [8]: https://david-dm.org/inspect-js/has-symbols#info=devDependencies
  26. [11]: https://nodei.co/npm/has-symbols.png?downloads=true&stars=true
  27. [license-image]: https://img.shields.io/npm/l/has-symbols.svg
  28. [license-url]: LICENSE
  29. [downloads-image]: https://img.shields.io/npm/dm/has-symbols.svg
  30. [downloads-url]: https://npm-stat.com/charts.html?package=has-symbols