(stream)
| 25149 | util.inherits(Transform, Duplex); |
| 25150 | |
| 25151 | function TransformState(stream) { |
| 25152 | this.afterTransform = function (er, data) { |
| 25153 | return afterTransform(stream, er, data); |
| 25154 | }; |
| 25155 | |
| 25156 | this.needTransform = false; |
| 25157 | this.transforming = false; |
| 25158 | this.writecb = null; |
| 25159 | this.writechunk = null; |
| 25160 | this.writeencoding = null; |
| 25161 | } |
| 25162 | |
| 25163 | function afterTransform(stream, er, data) { |
| 25164 | var ts = stream._transformState; |
nothing calls this directly
no test coverage detected