Lines Matching defs:Transform
35 // The Transform stream has all the aspects of the readable and writable
71 module.exports = Transform;
77 ObjectSetPrototypeOf(Transform.prototype, Duplex.prototype);
78 ObjectSetPrototypeOf(Transform, Duplex);
82 function Transform(options) {
83 if (!(this instanceof Transform))
84 return new Transform(options);
88 // make Transform a Readable with the Writable interface.
92 // a Transform just wants to buffer hwm number of elements. To avoid
124 // Backwards compat. Some Transform streams incorrectly implement _final
164 Transform.prototype._final = final;
166 Transform.prototype._transform = function(chunk, encoding, callback) {
170 Transform.prototype._write = function(chunk, encoding, callback) {
197 Transform.prototype._read = function() {