mholt/PapaParse

Support asynchronous iteration?

Aperta

#957 aperta il 28 ott 2022

 (0 commenti) (5 reazioni) (0 assegnatari)JavaScript (1185 fork)batch import
enhancementhelp wanted

Metriche repository

Star
 (13.546 stelle)
Metriche merge PR
 (Merge medio 18h) (1 PR mergiata in 30 g)

Descrizione

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);
}

Guida contributor