* @readonly * @type {ReadableStream}
()
| 183 | * @type {ReadableStream} |
| 184 | */ |
| 185 | get readable() { |
| 186 | if (!isTransformStream(this)) |
| 187 | throw new ERR_INVALID_THIS('TransformStream'); |
| 188 | return this[kState].readable; |
| 189 | } |
| 190 | |
| 191 | /** |
| 192 | * @readonly |
nothing calls this directly
no test coverage detected