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