Array of header field names
Assembles tokens into CSV records in object format.
Optionalinput: Token | Iterable<Token, any, any>A token or iterable of tokens to be assembled. Omit to flush remaining data.
Optionaloptions: CSVRecordAssemblerAssembleOptionsAssembler options.
An iterable iterator of CSV records as objects.
CSV Object Record Assembler interface.
CSVObjectRecordAssembler assembles tokens into CSV records in object format. Each record is returned as an object with header keys mapping to field values.
This interface is designed to be easily implemented in Rust/WASM with clear type semantics.
Example