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.

index.d.ts 467B

123456789101112131415161718
  1. /**
  2. Escape RegExp special characters.
  3. You can also use this to escape a string that is inserted into the middle of a regex, for example, into a character class.
  4. @example
  5. ```
  6. import escapeStringRegexp = require('escape-string-regexp');
  7. const escapedString = escapeStringRegexp('How much $ for a 🦄?');
  8. //=> 'How much \\$ for a 🦄\\?'
  9. new RegExp(escapedString);
  10. ```
  11. */
  12. declare const escapeStringRegexp: (string: string) => string;
  13. export = escapeStringRegexp;