Skip to main content
Module

std/encoding/csv.ts>ReadOptions

Deno standard library
Go to Latest
interface ReadOptions
Re-export
import { type ReadOptions } from "https://deno.land/std@0.167.0/encoding/csv.ts";

Properties

optional
separator: string = ","

Character which separates values.

optional
comment: string = "#"

Character to start a comment.

optional
trimLeadingSpace: boolean = false

Flag to trim the leading space of the value.

optional
lazyQuotes: boolean = false

Allow unquoted quote in a quoted field or non-double-quoted quotes in quoted field.

optional
fieldsPerRecord: number

Enabling the check of fields for each row. If == 0, first row is used as referral for the number of fields.