(chunk, encoding, cb)
| 25331 | function nop() {} |
| 25332 | |
| 25333 | function WriteReq(chunk, encoding, cb) { |
| 25334 | this.chunk = chunk; |
| 25335 | this.encoding = encoding; |
| 25336 | this.callback = cb; |
| 25337 | this.next = null; |
| 25338 | } |
| 25339 | |
| 25340 | function WritableState(options, stream) { |
| 25341 | Duplex = Duplex || require('./_stream_duplex'); |
nothing calls this directly
no outgoing calls
no test coverage detected