CsvOptions: {
    delimiterChar?: string;
    disableNumberConversion?: boolean;
    quoteChar?: string;
}

The Csv Options can be used when parsing or stringifying CSV data.

Type declaration

  • Optional delimiterChar?: string

    The CSV delimiter. Defaults to the comma ','.

  • Optional disableNumberConversion?: boolean

    Flag indicating if numbers should be converted to numbers or should remain text in the parsed output. Default value is false.

  • Optional quoteChar?: string

    The CSV quote character. Defauls to the double quote '"'.

Generated using TypeDoc