Module

x/oak/cookies.ts>Cookies#[Symbol.asyncIterator]

A middleware framework for handling HTTP with Deno 🐿️ 🦕
Extremely Popular
Go to Latest
method Cookies.prototype.[Symbol.asyncIterator]
import { Cookies } from "https://dotland.deno.dev/x/oak@v11.1.0/cookies.ts";

Iterate over the request's cookies, yielding up a tuple containing the key and the value.

If there are keys set on the application, only keys and values that are properly signed will be returned.

Returns

AsyncIterableIterator<[string, string]>