mholt/PapaParse

Support asynchronous iteration?

Open

#957 opened on 2022年10月28日

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

説明

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

コントリビューターガイド