(...transforms)
| 422 | } |
| 423 | |
| 424 | pull(...transforms) { |
| 425 | const rawConsumer = this.#createRawConsumer(); |
| 426 | |
| 427 | if (transforms.length > 0) { |
| 428 | return pullSyncWithTransforms(rawConsumer, ...transforms); |
| 429 | } |
| 430 | return rawConsumer; |
| 431 | } |
| 432 | |
| 433 | #createRawConsumer() { |
| 434 | const state = { |
nothing calls this directly
no test coverage detected