mholt/PapaParse

Support asynchronous iteration?

オープン

#957 opened on 2022/10/28

 (0 件のコメント) (5 件のリアクション) (0 人の担当者)JavaScript (1,186 件のフォーク)batch import
enhancementhelp wanted

Repository metrics

Stars
 (13,552 個のスター)
PR merge metrics
 (PR metrics pending)

説明

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

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