Parse CSV Response to array of records.
Optional
Array of records
import { parseResponse } from 'web-csv-toolbox';const response = await fetch('https://example.com/data.csv');const records = await parseResponse.toArray(response);console.log(records); Copy
import { parseResponse } from 'web-csv-toolbox';const response = await fetch('https://example.com/data.csv');const records = await parseResponse.toArray(response);console.log(records);
Parse CSV Response to array of records.