Skip to main content
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
interface CsvStringifyStreamOptions
import { type CsvStringifyStreamOptions } from "https://deno.land/std@0.218.0/csv/csv_stringify_stream.ts";

Options for CsvStringifyStream.

Properties

readonly
optional
separator: string = ","

Delimiter used to separate values.

readonly
optional
columns: Array<string>

A list of columns to be included in the output.

If you want to stream objects, this option is required.