import { getCookies } from "https://deno.land/std@0.206.0/http/cookie.ts";
Parse cookies of a header
Examples
Example 1
Example 1
import { getCookies } from "https://deno.land/std@0.206.0/http/cookie.ts";
const headers = new Headers();
headers.set("Cookie", "full=of; tasty=chocolate");
const cookies = getCookies(headers);
console.log(cookies); // { full: "of", tasty: "chocolate" }
Parameters
headers: Headers
The headers instance to get cookies from