Skip to main content
Module

std/csv/mod.ts>ParseOptions

Deno standard library
Go to Latest
interface ParseOptions
implements ReadOptions
import { type ParseOptions } from "https://deno.land/std@0.181.0/csv/mod.ts";

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: string[]

List of names used for header definition.