Parse a binary from an Uint8Array to an array of records.
CSV bytes to parse.
Optional
Parsing options
Array of records
import { parseUint8Array } from 'web-csv-toolbox';const csv = Uint8Array.from([ // ...]);const records = await parseUint8Array.toArray(csv); Copy
import { parseUint8Array } from 'web-csv-toolbox';const csv = Uint8Array.from([ // ...]);const records = await parseUint8Array.toArray(csv);
Parse a binary from an Uint8Array to an array of records.