mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
6 lines
146 B
TypeScript
6 lines
146 B
TypeScript
|
export const escapeRegEx = (text: string): string => {
|
||
|
return text.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&");
|
||
|
};
|
||
|
|
||
|
export default escapeRegEx;
|