mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
632 B
29 lines
632 B
'use strict';
|
|
const common = require('../common');
|
|
const stream = require('stream');
|
|
const util = require('util');
|
|
|
|
function Writable() {
|
|
this.writable = true;
|
|
stream.Writable.call(this);
|
|
this.prependListener = undefined;
|
|
}
|
|
util.inherits(Writable, stream.Writable);
|
|
Writable.prototype._write = function(chunk, end, cb) {
|
|
cb();
|
|
};
|
|
|
|
function Readable() {
|
|
this.readable = true;
|
|
stream.Readable.call(this);
|
|
}
|
|
util.inherits(Readable, stream.Readable);
|
|
Readable.prototype._read = function() {
|
|
this.push(null);
|
|
};
|
|
|
|
const w = new Writable();
|
|
w.on('pipe', common.mustCall(function() {}));
|
|
|
|
const r = new Readable();
|
|
r.pipe(w);
|
|
|