(target, result)
| 434 | } |
| 435 | |
| 436 | async function appendTransformResultAsyncSlow(target, result) { |
| 437 | for await (const batch of processTransformResultAsync(result)) { |
| 438 | ArrayPrototypePush(target, batch); |
| 439 | } |
| 440 | } |
| 441 | |
| 442 | // ============================================================================= |
| 443 | // Sync Pipeline Implementation |
no test coverage detected
searching dependent graphs…