Browse Source

Remove commented out code

pull/494/head
Trevor Harwell 7 years ago
parent
commit
a3694e9b95
  1. 3
      papaparse.js

3
papaparse.js

@ -850,7 +850,6 @@
function DuplexStreamStreamer(_config) { function DuplexStreamStreamer(_config) {
var Duplex = require('stream').Duplex; var Duplex = require('stream').Duplex;
// var self = this;
var config = copy(_config); var config = copy(_config);
var parseOnWrite = true; var parseOnWrite = true;
var writeStreamHasFinished = false; var writeStreamHasFinished = false;
@ -872,6 +871,8 @@
this._onCsvComplete = function() this._onCsvComplete = function()
{ {
// node will finish the read stream when
// null is pushed
stream.push(null); stream.push(null);
}; };

Loading…
Cancel
Save