function deleteCookie
deleteCookie(): voidSet the cookie header with empty value in the headers to delete it
Note: Deleting a
Cookiewill set its expiration date before now. Forcing the browser to delete it.
Examples
Example 1
Example 1
import { deleteCookie } from "@std/http/cookie"; const headers = new Headers(); deleteCookie(headers, "deno"); const cookieHeader = headers.get("set-cookie"); console.log(cookieHeader); // deno=; Expires=Thus, 01 Jan 1970 00:00:00 GMT
Parameters
Return Type
void