Skip to main content
Deno 2 is finally here 🎉️
Learn more
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.208.0/csv/mod.ts";

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.