Array of header field names
Parse a chunk of CSV binary data into object records.
Optionalchunk: BufferSourceCSV binary chunk (BufferSource: Uint8Array, ArrayBuffer, or other TypedArray) to parse (optional for flush)
Optionaloptions: CSVParserParseOptionsParse options
Iterable iterator of parsed CSV records as objects
Binary CSV Parser interface for object output format.
BinaryObjectCSVParser parses binary CSV data and returns records as objects. Each record is a key-value object where keys are header field names.
This interface is designed to be easily implemented in Rust/WASM with clear type semantics.
Example