Lines Matching refs:Duplex
36 module.exports = Duplex;
41 ObjectSetPrototypeOf(Duplex.prototype, Readable.prototype);
42 ObjectSetPrototypeOf(Duplex, Readable);
49 if (!Duplex.prototype[method])
50 Duplex.prototype[method] = Writable.prototype[method];
54 function Duplex(options) { class
55 if (!(this instanceof Duplex))
56 return new Duplex(options);
81 ObjectDefineProperties(Duplex.prototype, {
130 Duplex.fromWeb = function(pair, options) {
136 Duplex.toWeb = function(duplex) {
142 Duplex.from = function(body) {