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
This happens because csv-parser is fine with nextChr being null when this.state.first is true. Instead it should wait until there's at least one more byte or the input stream is closed.
The text was updated successfully, but these errors were encountered:
Expected Behavior
The assert in the repro passes.
Actual Behavior
The assert in the repro fails.
How Do We Reproduce?
Cause
This happens because
csv-parser
is fine withnextChr
beingnull
whenthis.state.first
istrue
. Instead it should wait until there's at least one more byte or the input stream is closed.The text was updated successfully, but these errors were encountered: