(chunk = void 0)
| 14459 | return ReadableStreamDefaultControllerGetDesiredSize(readableController); |
| 14460 | } |
| 14461 | enqueue(chunk = void 0) { |
| 14462 | if (!IsTransformStreamDefaultController(this)) { |
| 14463 | throw defaultControllerBrandCheckException("enqueue"); |
| 14464 | } |
| 14465 | TransformStreamDefaultControllerEnqueue(this, chunk); |
| 14466 | } |
| 14467 | /** |
| 14468 | * Errors both the readable side and the writable side of the controlled transform stream, making all future |
| 14469 | * interactions with it fail with the given error `e`. Any chunks queued for transformation will be discarded. |
nothing calls this directly
no test coverage detected