mirror of
https://github.com/unarray/file-tree-generator.git
synced 2026-07-22 08:40:29 +00:00
3 lines
No EOL
153 B
TypeScript
3 lines
No EOL
153 B
TypeScript
export const escapeString = (string: string): string => {
|
|
return string.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); // $& means the whole matched string
|
|
}; |