massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / escape-string-regexp / index.d.ts
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/escape-string-regexp/index.d.ts b/.config/coc/extensions/node_modules/coc-prettier/node_modules/escape-string-regexp/index.d.ts
new file mode 100644 (file)
index 0000000..7d34edc
--- /dev/null
@@ -0,0 +1,18 @@
+/**
+Escape RegExp special characters.
+
+You can also use this to escape a string that is inserted into the middle of a regex, for example, into a character class.
+
+@example
+```
+import escapeStringRegexp = require('escape-string-regexp');
+
+const escapedString = escapeStringRegexp('How much $ for a ðŸ¦„?');
+//=> 'How much \\$ for a ðŸ¦„\\?'
+
+new RegExp(escapedString);
+```
+*/
+declare const escapeStringRegexp: (string: string) => string;
+
+export = escapeStringRegexp;