* The readable side of the transform stream.
()
| 14360 | * The readable side of the transform stream. |
| 14361 | */ |
| 14362 | get readable() { |
| 14363 | if (!IsTransformStream(this)) { |
| 14364 | throw streamBrandCheckException("readable"); |
| 14365 | } |
| 14366 | return this._readable; |
| 14367 | } |
| 14368 | /** |
| 14369 | * The writable side of the transform stream. |
| 14370 | */ |
nothing calls this directly
no test coverage detected