function deleteCookieimport { deleteCookie } from "https://dotland.deno.dev/std@0.181.0/http/mod.ts"; deleteCookie(headers: Headers,name: string,attributes?: { path?: string; domain?: string; },)Set the cookie header with empty value in the headers to delete it Note: Deleting a Cookie will set its expiration date before now. Forcing the browser to delete it. ExamplesExample 1 import { deleteCookie } from "https://deno.land/std@0.181.0/http/cookie.ts"; const headers = new Headers(); deleteCookie(headers, "deno"); const cookieHeader = headers.get("set-cookie"); console.log(cookieHeader); // deno=; Expires=Thus, 01 Jan 1970 00:00:00 GMT Parametersheaders: HeadersThe headers instance to delete the cookie from name: stringName of cookie optionalattributes: { path?: string; domain?: string; }Additional cookie attributes