(tempDir: string)
| 430 | * @param tempDir - Path to the temporary directory to remove |
| 431 | */ |
| 432 | export async function removeTempDirectory(tempDir: string): Promise<void> { |
| 433 | try { |
| 434 | await rm(tempDir, { recursive: true, force: true }); |
| 435 | } catch { |
| 436 | // Best-effort cleanup; silently ignore errors |
| 437 | } |
| 438 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…