Skip to main content
Module

std/mime/mod.ts>MultipartWriter

Deno standard library
Go to Latest
class MultipartWriter
import { MultipartWriter } from "https://deno.land/std@0.101.0/mime/mod.ts";

Writer for creating multipart/form-data

Constructors

new
MultipartWriter(writer: Deno.Writer, boundary?: string)

Properties

private
readonly
_boundary: string
private
bufWriter: BufWriter
private
isClosed: boolean
private
lastPart: PartWriter | undefined
readonly
boundary: string

Methods

private
flush()

Close writer. No additional data can be written to stream

createFormFile(field: string, filename: string): Deno.Writer
writeField(field: string, value: string)
writeFile(
field: string,
filename: string,
)