(value: string)
| 207 | } |
| 208 | |
| 209 | function sanitizePathPart(value: string): string { |
| 210 | return value.replace(/[^a-zA-Z0-9._-]/g, '_'); |
| 211 | } |
| 212 | |
| 213 | function appendDiagnosticLine(logPath: string, line: string): void { |
| 214 | fs.mkdirSync(path.dirname(logPath), { recursive: true }); |
no outgoing calls
no test coverage detected