Parse a binary from an Uint8Array to an iterable iterator of records.
CSV bytes to parse.
Optional
Parsing options
Async iterable iterator of records.
import { parseUint8Array } from 'web-csv-toolbox';const csv = Uint8Array.from([ // ...]);for (const record of parseUint8Array.toIterableIterator(csv)) { console.log(record);} Copy
import { parseUint8Array } from 'web-csv-toolbox';const csv = Uint8Array.from([ // ...]);for (const record of parseUint8Array.toIterableIterator(csv)) { console.log(record);}
Parse a binary from an Uint8Array to an iterable iterator of records.