persona-community-5/.pnpm-store/v3/files/78/43bdc1456600f3efe2cc86238ae7eadd10a41c5f71f74a5aadbed66c8dea989495c2c427c53b0619eaac04b445f14b82ad81aee8b4adee8a62ee0cf91db6d9
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

15 lines
504 B
Plaintext

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