janisdd
janisdd
Why not just parse all and then remove the first `N` lines of the result?? Here is a one line solution ```js var result = Papa.parse('the csv data') var N...
Maybe I’m missing something but why don’t you use the plain column array as the result if the data is empty? If the columns contain something that needs to be...
First the delimiter is guessed: https://github.com/mholt/PapaParse/blob/master/papaparse.js#L1074 (before any "real" parsing). The delimiter-guess uses the same parsing method as the "real" parsing. So I guess the delimiter-guess-parsing throws... but I'm surprised...
As a workaround, check the file size before passing the file to papaparse? https://developer.mozilla.org/en-US/docs/Web/API/File see File.prototype.size If you need the large file support use streaming.
It is not clear from the docs but papaparse can only unparse json/objects that are not nested... Works ```json { "Column 1": "foo", "Column 2": "bar" }, { "Column 1":...
It depends on the structure and application. ```json { "Column 1": "foo", "Column 2": { "Column 3": "bar" } } ``` could be transformed to ```json { "Column 1": "foo",...
This issue is not related to papaparse. You can open an issue here: https://github.com/twickstrom/vue-papa-parse It seems that the vue plugin does not come with typescript support (.d.ts file). Maybe you...
And what is the issue here? Or what do you except the library to do in this case? Maybe a config option to overwrite the hard limit of 1MB?
Can confirm this. However, this only occurs if the option `has header` is also enabled. It also breaks if `has header` is manually toggled in the read options. A fix...
I think this is a duplicate of #79 ?