"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.escapeRegExp = void 0; /** * Lodash * Released under MIT license */ const reRegExpChar = /[\\^$.*+?()[\]{}|]/g; const reHasRegExpChar = RegExp(reRegExpChar.source); function escapeRegExp(string = '') { return string && reHasRegExpChar.test(string) ? string.replace(reRegExpChar, '\\$&') : string; } exports.escapeRegExp = escapeRegExp; //# sourceMappingURL=escapeRegExp.js.map