Searched refs:Duplexify (Results 1 – 2 of 2) sorted by relevance
/third_party/node/deps/npm/node_modules/duplexify/ |
D | index.js | 38 var Duplexify = function(writable, readable, opts) { class 39 if (!(this instanceof Duplexify)) return new Duplexify(writable, readable, opts) 63 inherits(Duplexify, stream.Duplex) 65 Duplexify.obj = function(writable, readable, opts) { 69 return new Duplexify(writable, readable, opts) 72 Duplexify.prototype.cork = function() { 76 Duplexify.prototype.uncork = function() { 80 Duplexify.prototype.setWritable = function(writable) { 116 Duplexify.prototype.setReadable = function(readable) { 157 Duplexify.prototype._read = function() { [all …]
|
/third_party/node/deps/npm/node_modules/pumpify/ |
D | index.js | 3 var Duplexify = require('duplexify') variable 14 Duplexify.call(this, null, null, opts) 18 inherits(Pumpify, Duplexify)
|