massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / escape-string-regexp / index.d.ts
1 /**
2 Escape RegExp special characters.
3
4 You 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 ```
8 import escapeStringRegexp = require('escape-string-regexp');
9
10 const escapedString = escapeStringRegexp('How much $ for a ðŸ¦„?');
11 //=> 'How much \\$ for a ðŸ¦„\\?'
12
13 new RegExp(escapedString);
14 ```
15 */
16 declare const escapeStringRegexp: (string: string) => string;
17
18 export = escapeStringRegexp;