source: imaps-frontend/node_modules/escape-string-regexp/index.d.ts

main
Last change on this file was 0c6b92a, checked in by stefan toskovski <stefantoska84@…>, 5 weeks ago

Pred finalna verzija

  • Property mode set to 100644
File size: 467 bytes
RevLine 
[d565449]1/**
2Escape RegExp special characters.
3
4You can also use this to escape a string that is inserted into the middle of a regex, for example, into a character class.
5
6@example
7```
8import escapeStringRegexp = require('escape-string-regexp');
9
10const escapedString = escapeStringRegexp('How much $ for a 🦄?');
11//=> 'How much \\$ for a 🦄\\?'
12
13new RegExp(escapedString);
14```
15*/
16declare const escapeStringRegexp: (string: string) => string;
17
18export = escapeStringRegexp;
Note: See TracBrowser for help on using the repository browser.