Read data from a CSV-encoded stream or file. Provides an auto/custom mapper for columns.
A CsvParseStream
expects input conforming to
RFC 4180.
new
CsvParseStream(options?: T)
Construct a new instance.
T extends CsvParseStreamOptions | undefined = undefined
readonly
readable: ReadableStream<RowType<T>>
The instance's ReadableStream
.
readonly
writable: WritableStream<string>
The instance's WritableStream
.