Dieses Repository beinhaltet HTML- und Javascript Code zur einer NotizenWebApp auf Basis von Web Storage. Zudem sind Mocha/Chai Tests im Browser enthalten. https://meinenotizen.netlify.app/
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 552B

4 years ago
123456789101112131415161718192021222324252627
  1. # escape-string-regexp [![Build Status](https://travis-ci.org/sindresorhus/escape-string-regexp.svg?branch=master)](https://travis-ci.org/sindresorhus/escape-string-regexp)
  2. > Escape RegExp special characters
  3. ## Install
  4. ```
  5. $ npm install --save escape-string-regexp
  6. ```
  7. ## Usage
  8. ```js
  9. const escapeStringRegexp = require('escape-string-regexp');
  10. const escapedString = escapeStringRegexp('how much $ for a unicorn?');
  11. //=> 'how much \$ for a unicorn\?'
  12. new RegExp(escapedString);
  13. ```
  14. ## License
  15. MIT © [Sindre Sorhus](http://sindresorhus.com)