The type of the header row
Parse a chunk of CSV binary data
Optionalchunk: BufferSourceCSV binary chunk (BufferSource) to parse (optional for flush)
Optionaloptions: CSVParserParseOptionsParse options including stream mode
Iterable iterator of parsed CSV records
Flexible CSV Parser for binary input with object output format. Combines TextDecoder and StringCSVParser to return records as objects.
Remarks
This class implements BinaryObjectCSVParser interface and enforces object output format. For type-safe usage, use the createBinaryCSVParser() factory function.
Accepts any BufferSource type (Uint8Array, ArrayBuffer, or other TypedArray views).
This is a low-level API that accepts BinaryCSVProcessingOptions (excluding execution strategy). For high-level APIs with execution strategy support, use parseBinary() and related functions.
Example