()
| 235 | let cleanedUp = false; |
| 236 | |
| 237 | const cleanup = async () => { |
| 238 | if (cleanedUp) return; |
| 239 | cleanedUp = true; |
| 240 | await cleanupTempFiles(tempFiles); |
| 241 | onCleanup?.(); |
| 242 | }; |
| 243 | |
| 244 | const stream = new ReadableStream<Uint8Array>({ |
| 245 | async start(controller) { |
no test coverage detected