function getCookiesimport { getCookies } from "https://dotland.deno.dev/std@0.181.0/http/mod.ts"; getCookies(headers: Headers): Record<string, string>Parse cookies of a header ExamplesExample 1 import { getCookies } from "https://deno.land/std@0.181.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" } Parametersheaders: HeadersThe headers instance to get cookies from ReturnsRecord<string, string>Object with cookie names as keys