Oliver Foster
Oliver Foster
You're not using my example. I also couldn't get @ushakov-ruslan s example to work either which is why I left my example. Perhaps the code changed in between? Mine explicitly...
Downstreamformat: 'line'. My transform is called lineToArray
```js readStream .pipe(csv({ downstreamFormat: 'line', checkType: true }) .pipe(lineToArray) .pipe(stream); ``` Are you debugging? It looks like you're returning a promise from your parse function before creating the stream? It's...
You're also not calling resolve on your promise.
Can you remove all the header stuff and just test it as I wrote it three messages ago? The line parser is not the array parser. Get the array of...
Your input filepath isn't right, the CSV isn't formatted correctly, you're not importing the library properly, you're dropping errors in a try catch block around your call to parse or...
```js readStream.pipe(stream); ``` Does this make a copy of the file?
What version of node are you using? I want to test myself. It definitely looks like an issue with the way I'm using streams.