import { deleteCookie } from "https://deno.land/std@0.102.0/http/cookie.ts";
Set the cookie header properly in the Response to delete it
Parameters
res: { headers?: Headers; }
Server Response
Name of the cookie to Delete Example:
deleteCookie(res,'foo'); deleteCookie(res,'foo', {path:'/demo'}); deleteCookie(res,'foo', {domain:'deno.land'});