mholt/PapaParse

Support asynchronous iteration?

Open

#957 创建于 2022年10月28日

在 GitHub 查看
 (0 评论) (5 反应) (0 负责人)JavaScript (11,877 star) (1,157 fork)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);
}

贡献者指南