* @param {import('node:stream').Writable} stream * @param {Buffer[]} body
(stream, body)
| 394 | * @param {Buffer[]} body |
| 395 | */ |
| 396 | function writeBody (stream, body) { |
| 397 | for (const chunk of body) { |
| 398 | stream.write(chunk) |
| 399 | } |
| 400 | |
| 401 | stream.end() |
| 402 | return stream |
| 403 | } |
| 404 | |
| 405 | /** |
| 406 | * @param {import('../../types/cache-interceptor.d.ts').default.GetResult} param0 |
no test coverage detected
searching dependent graphs…