(prefix: string)
| 521 | } |
| 522 | |
| 523 | function trimTrailingSlash(prefix: string): string { |
| 524 | return prefix.endsWith("/") ? prefix.slice(0, -1) : prefix; |
| 525 | } |
| 526 | |
| 527 | function cleanupDir(dir: string): void { |
| 528 | try { |
no outgoing calls
no test coverage detected