hemanthreddyk

Results 6 comments of hemanthreddyk

Noticing similar issue in - Puppeteer version: 10.4.0 - Platform / OS version: Alpine Linux 3.13.5 - Chromium 93.0.4577.82 - Node.js version: 14.18.0 Requests to fetch fonts from the CDN...

> Noticing similar issue in > > * Puppeteer version: 10.4.0 > * Platform / OS version: Alpine Linux 3.13.5 > * Chromium 93.0.4577.82 > * Node.js version: 14.18.0 >...

I did achieve this by making few changes in the code. Idea is to push all the errors into an array lets say 'recordErrors' which will be maintained in the...

Input File ````csv Name,Id,Gender Hydrogen,1,M Helium,2,M,test "Lithion",3,"F" "Beryllium",""","F" "Boron",5,"M" Carbon",6,"F" ```` Parser Options ``` { columns: true, skip_lines_with_error: true, raw: true } ``` When skip_lines_with_error is set library emits a...

@wdavidw Thank you very much for releasing this feature. However this only solves half my usecase. As I previously mentioned above Current implementation emits a 'skip' event as soon as...

My use-case here is to ignore the second row which had tab space in it. By enabling 'relax_column_count' I wont get an error if column count doesn't match with header...