Skip to content

Commit 021da85

Browse files
author
James Halliday
committed
rip out the old new Stream default stream to just use split, duplexer, and through
1 parent e8b7c72 commit 021da85

File tree

1 file changed

+7
-26
lines changed

1 file changed

+7
-26
lines changed

lib/default_stream.js

+7-26
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,11 @@
1-
var Stream = require('stream');
1+
var through = require('through');
2+
var duplexer = require('duplexer');
3+
var split = require('split');
24

35
module.exports = function () {
4-
var out = new Stream;
5-
out.writable = true;
6-
var buffered = '';
6+
return duplexer(split(), through(write));
77

8-
out.write = function (buf) {
9-
var s = buffered + String(buf);
10-
var lines = s.split('\n');
11-
for (var i = 0; i < lines.length - 1; i++) {
12-
console.log(lines[i]);
13-
}
14-
buffered = lines[i];
15-
};
16-
17-
out.destroy = function () {
18-
out.writable = false;
19-
out.emit('close');
20-
};
21-
22-
out.end = function (msg) {
23-
if (msg !== undefined) out.write(msg);
24-
if (buffered) console.log(buffered);
25-
out.writable = false;
26-
out.emit('close');
27-
};
28-
29-
return out;
8+
function write (line) {
9+
console.log(line);
10+
}
3011
};

0 commit comments

Comments
 (0)