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
I've took a brief look at the fromStream source code and it seems to be that addListener('data', ...) has no effect on stream.pipe(csv()) stream. I wonder why.
If I change addListener('data', ...) to on('data', ...) in the NodeRx sources, It starts working as expected.
The text was updated successfully, but these errors were encountered:
The problem is:
when I try to pass a csv stream to NodeRx.fromStream it has no effect.
I've took a brief look at the fromStream source code and it seems to be that
addListener('data', ...)
has no effect onstream.pipe(csv())
stream. I wonder why.If I change
addListener('data', ...)
toon('data', ...)
in the NodeRx sources, It starts working as expected.The text was updated successfully, but these errors were encountered: