PapaParse icon indicating copy to clipboard operation
PapaParse copied to clipboard

Fast and powerful CSV (delimited text) parser that gracefully handles large files and malformed input

Results 189 PapaParse issues
Sort by recently updated
recently updated
newest added

I am trying to use PapaParse in the browser to parse a file using: ``` Papa.parse(fileInput.files[0], { complete: function(results) { console.log(results); } }); ``` I am bundling my javascript with...

[Here](https://codepen.io/karger/pen/exKQKZ) is a codepen. Notice that in the serialized output, the first property name is " a" (with a single space).

Not sure if this is a bug or simply a limitation of parsing in worker mode, but when I parse a (local) file in worker mode, the `row.meta.cursor` always points...

enhancement
help wanted

### Description When I try to parse a CSV using worker and skipEmptyLines greedy the cursor stop when it completes 1000 lines processed. ### Scenario ``` javascript Papa.parse(file, { skipEmptyLines:...

Currently using web-components (LitElement, open-wc) and I have one component using Papaparse. When running tests via karma, it defaults to the "Browser globals" scenario, though in this case, "root" is...

Hi, I googled this issue seems like it's supposed to be solved previously. I'm still running into it with the latest 5.0.2 build and 4.6.0 build when I turn on...

I struggled getting this to work--but finally came up with a solution. I noticed some others struggling with the same, so I figured I clean my code I used up...

website
suggestion

In my recent project, I'm trying to pause `stream` using `chunk` till ajax receive the completed function call. here's my implementaion ``` Javascript /** * * ********************************/ $('#import_potential').submit(function () {...

question

i Tried to using papaparse in react-native , but i got an illogocal result , in spent of display the content of csv file , i got in the result...

## Issue If I pass a CSV stream to `Papa.parse` that contains special characters, it sometimes breaks the special characters so they show up as e.g. ��. ## How to...