Skip to main content
Module

std/http/cookie.ts>getSetCookies

Deno standard library
Go to Latest
function getSetCookies
import { getSetCookies } from "https://deno.land/std@0.175.0/http/cookie.ts";

Parse set-cookies of a header

Examples

Example 1

import { getSetCookies } from "https://deno.land/std@0.175.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

List of cookies