(depth, options)
| 199 | } |
| 200 | |
| 201 | [kInspect](depth, options) { |
| 202 | return customInspect(depth, options, this[kType], { |
| 203 | readable: this.readable, |
| 204 | writable: this.writable, |
| 205 | backpressure: this[kState].backpressure, |
| 206 | }); |
| 207 | } |
| 208 | |
| 209 | [kTransfer]() { |
| 210 | if (!isTransformStream(this)) |
nothing calls this directly
no test coverage detected