interface RegExpConstructor {
escape(str: any): string;
}The function RegExp.escape accepts an input string and prefixes with \
those characters in that string which have a special meaning when appearing
in a regular expression.
The implementation is based on the stage 2 ECMAScript proposal of the same name: https://github.com/tc39/proposal-regex-escaping
escape(str: any): string;