enhancementhelp wanted
Metriche repository
- Star
- (11.877 star)
- Metriche merge PR
- (Nessuna PR mergiata in 30 g)
Descrizione
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);
}