/** * @license * Based on escapeRegExp from Lodash library: * * Lodash * Copyright JS Foundation and other contributors * Released under MIT license * Based on Underscore.js 1.8.3 * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors */ /** * Escapes the `RegExp` special characters "^", "$", "\", ".", "*", "+", * "?", "(", ")", "[", "]", "{", "}", and "|" in `string`. */ declare function encodeRegex(data: string | RegExp): string; export default encodeRegex; //# sourceMappingURL=encodeRegex.d.ts.map