Skip to main content
Module

x/live/deps.ts>getSetCookies

Open-Source web editor based on Preact, Tailwind and TypeScript. The other side of code.
Very Popular
Go to Latest
function getSetCookies
import { getSetCookies } from "https://deno.land/x/live@1.57.1/deps.ts";

Parse set-cookies of a header

Examples

Example 1

import { getSetCookies } from "https://deno.land/std@0.224.0/http/cookie.ts";

const headers = new Headers([
  ["Set-Cookie", "lulu=meow; Secure; Max-Age=3600"],
  ["Set-Cookie", "booya=kasha; HttpOnly; Path=/"],
]);

const cookies = getSetCookies(headers);
console.log(cookies); // [{ name: "lulu", value: "meow", secure: true, maxAge: 3600 }, { name: "booya", value: "kahsa", httpOnly: true, path: "/ }]

Parameters

headers: Headers

The headers instance to get set-cookies from

Returns

Cookie[]

List of cookies