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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # is-alphanumerical
  2. [![Build][build-badge]][build]
  3. [![Coverage][coverage-badge]][coverage]
  4. [![Downloads][downloads-badge]][downloads]
  5. [![Size][size-badge]][size]
  6. Check if a character is alphanumerical (`[a-zA-Z0-9]`).
  7. ## Install
  8. [npm][]:
  9. ```sh
  10. npm install is-alphanumerical
  11. ```
  12. ## Use
  13. ```js
  14. var alphanumerical = require('is-alphanumerical')
  15. alphanumerical('a') // => true
  16. alphanumerical('Z') // => true
  17. alphanumerical('0') // => true
  18. alphanumerical(' ') // => false
  19. alphanumerical('💩') // => false
  20. ```
  21. ## API
  22. ### `alphanumerical(character)`
  23. Check whether the given character code (`number`), or the character code at the
  24. first position (`string`), is alphanumerical.
  25. ## Related
  26. * [`is-alphabetical`](https://github.com/wooorm/is-alphabetical)
  27. * [`is-decimal`](https://github.com/wooorm/is-decimal)
  28. * [`is-hexadecimal`](https://github.com/wooorm/is-hexadecimal)
  29. * [`is-whitespace-character`](https://github.com/wooorm/is-whitespace-character)
  30. * [`is-word-character`](https://github.com/wooorm/is-word-character)
  31. ## License
  32. [MIT][license] © [Titus Wormer][author]
  33. <!-- Definitions -->
  34. [build-badge]: https://img.shields.io/travis/wooorm/is-alphanumerical.svg
  35. [build]: https://travis-ci.org/wooorm/is-alphanumerical
  36. [coverage-badge]: https://img.shields.io/codecov/c/github/wooorm/is-alphanumerical.svg
  37. [coverage]: https://codecov.io/github/wooorm/is-alphanumerical
  38. [downloads-badge]: https://img.shields.io/npm/dm/is-alphanumerical.svg
  39. [downloads]: https://www.npmjs.com/package/is-alphanumerical
  40. [size-badge]: https://img.shields.io/bundlephobia/minzip/is-alphanumerical.svg
  41. [size]: https://bundlephobia.com/result?p=is-alphanumerical
  42. [npm]: https://docs.npmjs.com/cli/install
  43. [license]: license
  44. [author]: https://wooorm.com