Skip to content

Commit a2ba0fb

Browse files
authored
Merge pull request #113 from blakeblackshear/master
Output eol between ndjson lines
2 parents d1b4c5a + 828dd51 commit a2ba0fb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libs/core/Converter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ Converter.prototype.flushBuffer = function() {
189189
if (this._options && this._options.objectMode){
190190
this.push(resultRow);
191191
}else{
192-
this.push(resultJSONStr, "utf8");
192+
this.push(resultJSONStr + eol, "utf8");
193193
}
194194
this.recordNum++;
195195
}

0 commit comments

Comments
 (0)