mholt/PapaParse

Support asynchronous iteration?

Open

#957 opened on Oct 28, 2022

View on GitHub
 (0 comments) (5 reactions) (0 assignees)JavaScript (11,877 stars) (1,157 forks)batch import
enhancementhelp wanted

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

Support asynchronous iteration? · mholt/PapaParse#957 | Good First Issue