(message: string)
| 55 | } |
| 56 | |
| 57 | function logLine(message: string): void { |
| 58 | console.log(`[${new Date().toISOString()}] ${message}`); |
| 59 | } |
| 60 | |
| 61 | async function ensureParentDirectory(filePath: string): Promise<void> { |
| 62 | await mkdir(dirname(filePath), { recursive: true }); |
no outgoing calls
no test coverage detected