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
Upon further research, #568 indicates unparse does not support streaming at all.
The documentation for Nodejs stream support seems a bit limited and I'm not able to get it working in object mode. I'm getting an error when I attempt the following. Is object mode streaming supported?
Unable to serialize unrecognized input
constreadable=newReadable({objectMode: true,highWaterMark: 10000})// ...constparser=Papa.unparse(Papa.NODE_STREAM_INPUT,{fastMode: true});pipeline(readable,through2.obj(functionp(chunk,enc,cb){// do stuff with data// chunk is a js objectcb(null,chunk);}),parser,res);
The text was updated successfully, but these errors were encountered:
Upon further research, #568 indicates
unparse
does not support streaming at all.The documentation for Nodejs stream support seems a bit limited and I'm not able to get it working in object mode. I'm getting an error when I attempt the following. Is object mode streaming supported?
Unable to serialize unrecognized input
The text was updated successfully, but these errors were encountered: