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 540B

123456789101112131415161718192021222324252627282930313233343536
  1. # is-regexp [![Build Status](https://travis-ci.org/sindresorhus/is-regexp.svg?branch=master)](https://travis-ci.org/sindresorhus/is-regexp)
  2. > Check if a value is a regular expression
  3. ## Install
  4. ```
  5. $ npm install is-regexp
  6. ```
  7. ## Usage
  8. ```js
  9. const isRegexp = require('is-regexp');
  10. isRegexp('unicorn');
  11. //=> false
  12. isRegexp(/unicorn/);
  13. //=> true
  14. isRegexp(new RegExp('unicorn'));
  15. //=> true
  16. ```
  17. ## Related
  18. - [is](https://github.com/sindresorhus/is) - Type check values
  19. ## License
  20. MIT © [Sindre Sorhus](https://sindresorhus.com)