import { getSetCookies } from "https://deno.land/std@0.194.0/http/mod.ts";
Parse set-cookies of a header
Examples
Example 1
Example 1
import { getSetCookies } from "https://deno.land/std@0.194.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