enhancementhelp wanted
Repository metrics
- Stars
- (11,877 stars)
- PR merge metrics
- (Avg merge 18h) (1 merged PR in 30d)
Description
It’d be great if PapaParse could support asynchronous iteration because it lets you pull data – e.g.:
for await (const row of Papa.parse(bigFile, {asyncIteration: true})) {
console.log(row);
}