function deleteCookieimport { deleteCookie } from "https://deno.land/std@0.151.0/http/cookie.ts"; deleteCookie(headers: Headers,name: string,attributes?: { path?: string; domain?: string; },): voidSet the cookie header with empty value in the headers to delete it Parametersheaders: HeadersThe headers instance to delete the cookie from name: stringName of cookie optionalattributes: { path?: string; domain?: string; }Additional cookie attributes Returnsvoid