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

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