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

### Preconditions: CSV: ``` x,y,z,t 5,3,2,4 5,6,4,1 5,9,3,2 10,3,1,"5 10,6,1,"5 10,9,5,"5 15,3,4,"5 15,6,0,"5 ``` Config: ``` { delimiter: '', newline: '', quoteChar: '"', escapeChar: '"', header: true, transformHeader: undefined, dynamicTyping:...

### Preconditions: CSV: ``` x,y,z,t 5,3,2,4 5,6,4,1 5,9,3,2 10,3,1,5 10,6,1,5 10,9,5 15,3,4,"5 ``` Config: ``` { delimiter: '', newline: '', quoteChar: '"', escapeChar: '"', header: true, transformHeader: undefined, dynamicTyping: true,...

The stream is constructed this way: const AWS = require('aws-sdk'); const s3 = new AWS.S3(); let readStream; ... readStream = s3.getObject(params).createReadStream(); The csv has windows '\r\n' line ending. If 'input'...

If I understand the code correctly, the preview is used to limit the delimiter guessing to the first 10 lines https://github.com/mholt/PapaParse/blob/master/papaparse.js#L1304 In some situations the data can be very long...

While upgrading to Angular 10, using PapaParse gives following warning message - WARNING in C:\parser.component.ts depends on papaparse. CommonJS or AMD dependencies can cause optimization bailouts. This seems to be...

enhancement
help wanted
api change

Hello, SonarQube is been showing a security issue of level 'Critical' Description: Filename: papaparse:5.3.0 | Reference: CWE-185: Incorrect Regular Expression | CVSS Score: 7.5 | Category: CWE-185 | The software...

When I try to use PapaParse to fetch data from a Google Sheet I shared as a csv file using ` function init() { Papa.parse(public_spreadsheet_url, { download: true, header: true,...

I am trying to download a csv.gz file and then be able to treat the data rows by rows on a node server. I don't mind the method (request, https...)...

Is there any way to use a promise instead of a callback? I've gotten to where I hate callbacks.

This csv with tab as delimiter doesn't work ``` f "fdss"gfgd"" f f ``` This csv I get from clipboard then copy from exel like tables