Skip to main content
Module

std/http/mod.ts>deleteCookie

Deno standard library
Go to Latest
function deleteCookie
import { deleteCookie } from "https://deno.land/std@0.89.0/http/mod.ts";

Set the cookie header properly in the Response to delete it

Parameters

res: { headers?: Headers; }

Server Response

name: string

Name of the cookie to Delete Example:

deleteCookie(res,'foo');