Parse CSV string to records.
Optional
Array of records
import { parseString } from 'web-csv-toolbox';const csv = `name,ageAlice,42Bob,69`;const records = await parseString.toArray(csv);console.log(records);// Prints:// [ { name: 'Alice', age: '42' }, { name: 'Bob', age: '69' } ] Copy
import { parseString } from 'web-csv-toolbox';const csv = `name,ageAlice,42Bob,69`;const records = await parseString.toArray(csv);console.log(records);// Prints:// [ { name: 'Alice', age: '42' }, { name: 'Bob', age: '69' } ]
Parse CSV string to records.