Open GoogleCodeExporter opened 9 years ago
Checked the source and it's a simple problem of an empty options.state object.
Line 278: if(!options.state.rowNum)
When I pass in an option like this it works:
var splitLines = $.csv.parsers.splitLines(t, {separator: ",", delimiter:
"\x22", state: { } });
Original comment by dirk.ste...@wondergraphs.com
on 7 Apr 2013 at 6:20
I'll take a look at it.
I added more state tracking on the last update and probably just missed the
default state object creation on the splitLines method.
Thank you for the feedback.
Original comment by evanpla...@gmail.com
on 8 Apr 2013 at 4:25
If you want a quick and dirty fix. Just add a 'state' object literal with
rowNum and colNum both initialized to 0.
To see what I mean, just take a look at some of the other functions. The proper
fix would be to make splitLines so it inherits its state from the function
arguments with defaults as a fallback.
Original comment by evanpla...@gmail.com
on 23 Apr 2013 at 12:59
Original comment by evanpla...@gmail.com
on 9 Dec 2013 at 11:32
Original issue reported on code.google.com by
dirk.ste...@wondergraphs.com
on 7 Apr 2013 at 6:09