nodejs-polars
    Preparing search index...

    Interface CsvWriterOptions

    Options for

    interface CsvWriterOptions {
        batchSize?: number;
        checkExtension?: boolean;
        cloudOptions?: Record<string, string | number | boolean>;
        compression?: "uncompressed" | "gzip" | "zstd";
        compressionLevel?: number;
        dateFormat?: string;
        datetimeFormat?: string;
        decimalComma?: boolean;
        floatPrecision?: number;
        floatScientific?: boolean;
        includeBom?: boolean;
        includeHeader?: boolean;
        lineTerminator?: string;
        maintainOrder?: boolean;
        mkdir?: boolean;
        nullValue?: string;
        quoteChar?: string;
        quoteStyle?: "always" | "necessary" | "non_numeric" | "never";
        separator?: string;
        syncOnClose?: "none" | "data" | "all";
        timeFormat?: string;
    }
    Index
    batchSize?: number
    checkExtension?: boolean
    cloudOptions?: Record<string, string | number | boolean>
    compression?: "uncompressed" | "gzip" | "zstd"
    compressionLevel?: number
    dateFormat?: string
    datetimeFormat?: string
    decimalComma?: boolean
    floatPrecision?: number
    floatScientific?: boolean
    includeBom?: boolean
    includeHeader?: boolean
    lineTerminator?: string
    maintainOrder?: boolean
    mkdir?: boolean
    nullValue?: string
    quoteChar?: string
    quoteStyle?: "always" | "necessary" | "non_numeric" | "never"
    separator?: string
    syncOnClose?: "none" | "data" | "all"
    timeFormat?: string