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.101.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'); deleteCookie(res,'foo', {path:'/demo'}); deleteCookie(res,'foo', {domain:'deno.land'});

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