(value: string)
| 7 | const PATH_DELIMITERS = new Set([" ", "\t", '"', "'", "="]); |
| 8 | |
| 9 | function toDisplayPath(value: string): string { |
| 10 | return value.replace(/\\/g, "/"); |
| 11 | } |
| 12 | |
| 13 | function escapeRegex(value: string): string { |
| 14 | return value.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); |
no outgoing calls
no test coverage detected