Skip to content

Commit 14ab9d1

Browse files
Matt-EschJames Halliday
authored and
James Halliday
committed
write sync to stdout
1 parent a9f5302 commit 14ab9d1

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lib/default_stream.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
var through = require('through');
2+
var fs = require('fs');
23

34
module.exports = function () {
45
var line = '';
56
var stream = through(write, flush);
67
return stream;
7-
8+
89
function write (buf) {
910
for (var i = 0; i < buf.length; i++) {
1011
var c = typeof buf === 'string'
@@ -15,9 +16,9 @@ module.exports = function () {
1516
else line += c;
1617
}
1718
}
18-
19+
1920
function flush () {
20-
try { console.log(line); }
21+
try { fs.writeSync(1, line + '\n'); }
2122
catch (e) { stream.emit('error', e) }
2223
line = '';
2324
}

0 commit comments

Comments
 (0)