Skip to main content
Module

x/oak/mod.ts>FormDataReader#stream

A middleware framework for handling HTTP with Deno 🐿️ 🦕
Extremely Popular
Go to Latest
method FormDataReader.prototype.stream
import { FormDataReader } from "https://deno.land/x/oak@v11.1.0/mod.ts";

Returns an iterator which will asynchronously yield each part of the form data. The yielded value is a tuple, where the first element is the name of the part and the second element is a string or a FormDataFile object.

Parameters

optional
options: FormDataReadOptions = [UNSUPPORTED]

Returns

AsyncIterableIterator<[string, string | FormDataFile]>