Skip to content
Snippets Groups Projects
Commit 84b988ea authored by Alexander Rose's avatar Alexander Rose
Browse files

fix csv parser choking on newline at end of file

parent 35e978ef
No related branches found
No related tags found
No related merge requests found
......@@ -174,7 +174,7 @@ function moveNextInternal(state: State) {
if (tokenizer.position >= tokenizer.length) {
state.tokenType = CsvTokenType.End;
return true;
return false;
}
tokenizer.tokenStart = tokenizer.position;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment