Ducklings API Documentation
    Preparing search index...

    Interface CSVInsertOptions

    Options for CSV insertion.

    interface CSVInsertOptions {
        columns?: string[];
        delimiter?: string;
        escape?: string;
        header?: boolean;
        quote?: string;
        skip?: number;
    }
    Index

    Properties

    columns?: string[]

    Column names (if no header)

    delimiter?: string

    Column delimiter

    escape?: string

    Escape character

    header?: boolean

    Whether the CSV has a header row

    quote?: string

    Quote character

    skip?: number

    Skip rows at start