You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Creating a Readable stream and piping it into the parser should result in parsed csv data
Actual Behavior
internal/streams/readable.js:623
throw new ERR_METHOD_NOT_IMPLEMENTED('_read()');
^
Error [ERR_METHOD_NOT_IMPLEMENTED]: The _read() method is not implemented
at Readable._read (internal/streams/readable.js:623:9)
at Readable.read (internal/streams/readable.js:462:10)
at maybeReadMore_ (internal/streams/readable.js:610:12)
at processTicksAndRejections (internal/process/task_queues.js:82:21) {
code: 'ERR_METHOD_NOT_IMPLEMENTED'
}
Not sure if you still have the issue, but after pushing your actual data, you should also push null to the readable stream like such: readableStream.push(null).
Expected Behavior
Creating a Readable stream and piping it into the parser should result in parsed csv data
Actual Behavior
How Do We Reproduce?
csvTest.csv
both methods of creating a stream should result in the exact same output, as they have the exact same input.
The text was updated successfully, but these errors were encountered: