(filePath: string)
| 141 | } |
| 142 | |
| 143 | function cleanupTempFile(filePath: string): void { |
| 144 | try { |
| 145 | if (fs.existsSync(filePath)) fs.unlinkSync(filePath) |
| 146 | } catch { |
| 147 | /* ignore */ |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | // ==================== Pull Engine ==================== |
| 152 |