Parse CSV string to records.
Optional
Async iterable iterator of records
import { parseString } from 'web-csv-toolbox';const csv = `name,ageAlice,42Bob,69`;for (const record of parseString.toIterableIterator(csv)) { console.log(record);}// Prints:// { name: 'Alice', age: '42' }// { name: 'Bob', age: '69' } Copy
import { parseString } from 'web-csv-toolbox';const csv = `name,ageAlice,42Bob,69`;for (const record of parseString.toIterableIterator(csv)) { console.log(record);}// Prints:// { name: 'Alice', age: '42' }// { name: 'Bob', age: '69' }
Parse CSV string to records.