csv-stream-lite - v1.0.4
    Preparing search index...

    Interface CsvEntityOptions

    Options for configuring CSV entity parsing.

    interface CsvEntityOptions {
        escapeChar?: string;
        newline?: string;
        quoteChar?: string;
        separator?: string;
        trim?: boolean;
    }
    Index

    Properties

    escapeChar?: string

    Character used to escape special characters. Defaults to '"'

    newline?: string

    String used to denote new lines. Defaults to auto-detected '\r', '\n', or '\r\n'

    quoteChar?: string

    Character used to quote fields. Defaults to escapeChar value

    separator?: string

    Character used to separate fields. Defaults to ','

    trim?: boolean

    Whether to trim whitespace from fields. Defaults to false. NOTE: this option is not supported when streaming, as trimming requires buffering the entire field.