* @readonly * @type {WritableStream}
()
| 193 | * @type {WritableStream} |
| 194 | */ |
| 195 | get writable() { |
| 196 | if (!isTransformStream(this)) |
| 197 | throw new ERR_INVALID_THIS('TransformStream'); |
| 198 | return this[kState].writable; |
| 199 | } |
| 200 | |
| 201 | [kInspect](depth, options) { |
| 202 | return customInspect(depth, options, this[kType], { |
nothing calls this directly
no test coverage detected