web-csv-toolbox - v0.14.0
    Preparing search index...

    Interface CSVParserOptions<Header>

    Options for CSV Parser

    interface CSVParserOptions<
        Header extends ReadonlyArray<string> = readonly string[],
    > {
        delimiter?: string;
        header?: Header;
        maxFieldCount?: number;
        quotation?: string;
    }

    Type Parameters

    • Header extends ReadonlyArray<string> = readonly string[]
    Index

    Properties

    delimiter?: string

    Field delimiter character

    header?: Header

    Custom header array

    maxFieldCount?: number

    Maximum field count limit

    quotation?: string

    Quotation character