(path: string, content: string)
| 43 | } |
| 44 | |
| 45 | function writeFile(path: string, content: string): void { |
| 46 | mkdirSync(join(path, '..'), { recursive: true }) |
| 47 | writeFileSync(path, content) |
| 48 | } |
| 49 | |
| 50 | function touchOld(path: string, daysAgo: number): void { |
| 51 | const past = new Date(Date.now() - daysAgo * 24 * 60 * 60 * 1000) |
no outgoing calls
no test coverage detected