Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

std/http/cookie.ts>deleteCookie

Deno standard library
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
function deleteCookie
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: string

Name of the cookie to Delete Example:

deleteCookie(res,'foo'); deleteCookie(res,'foo', {path:'/demo'}); deleteCookie(res,'foo', {domain:'deno.land'});

optional
attributes: { path?: string; domain?: string; }