Skip to main content
The Deno 2 Release Candidate is here
Learn more
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
interface CsvParseStreamOptions
implements ReadOptions
import { type CsvParseStreamOptions } from "https://deno.land/std@0.214.0/csv/csv_parse_stream.ts";

Options for CsvParseStream.

Properties

optional
skipFirstRow: boolean

If you provide skipFirstRow: true and columns, the first line will be skipped. If you provide skipFirstRow: true but not columns, the first line will be skipped and used as header definitions.

optional
columns: readonly string[]

List of names used for header definition.