Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
To repozytorium jest zarchiwizowane. Możesz wyświetlać pliki i je sklonować, ale nie możesz do niego przepychać zmian lub otwierać zgłoszeń/Pull Requestów.
|
123456789101112131415161718192021222324252627 |
- # escape-string-regexp [](https://travis-ci.org/sindresorhus/escape-string-regexp)
-
- > Escape RegExp special characters
-
-
- ## Install
-
- ```
- $ npm install --save escape-string-regexp
- ```
-
-
- ## Usage
-
- ```js
- const escapeStringRegexp = require('escape-string-regexp');
-
- const escapedString = escapeStringRegexp('how much $ for a unicorn?');
- //=> 'how much \$ for a unicorn\?'
-
- new RegExp(escapedString);
- ```
-
-
- ## License
-
- MIT © [Sindre Sorhus](http://sindresorhus.com)
|