mholt/PapaParse

Support asynchronous iteration?

Open

#957 opened on Oct 28, 2022

 (0 comments) (5 reactions) (0 assignees)JavaScript (1,185 forks)batch import
enhancementhelp wanted

Repository metrics

Stars
 (13,543 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);
}

Contributor guide