Optional
options: ParseOptions<Header>Array of records
import { parseStringStream } from 'web-csv-toolbox';
const csv = `name,age
Alice,42
Bob,69`;
const stream = new ReadableStream({
start(controller) {
controller.enqueue(csv);
controller.close();
},
});
const records = await parseStringStream.toArray(stream);
console.log(records);
// Prints:
// [ { name: 'Alice', age: '42' }, { name: 'Bob', age: '69' } ]
Parse CSV string stream to records.