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