Skip to main content

@std/http@0.215.0

latest
Works with
It is unknown whether this package works with Browsers, Deno, Node.js, Cloudflare Workers, Bun
It is unknown whether this package works with Browsers
It is unknown whether this package works with Deno
It is unknown whether this package works with Node.js
It is unknown whether this package works with Cloudflare Workers
It is unknown whether this package works with Bun
JSR Score70%
Published2 years ago (0.215.0)
function deleteCookie
deleteCookie(
headers: Headers,
name: string,
attributes?: { path?: string; domain?: string; }
): void

Set the cookie header with empty value in the headers to delete it

Note: Deleting a Cookie will set its expiration date before now. Forcing the browser to delete it.

Examples

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

The headers instance to delete the cookie from

Name of cookie

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

Additional cookie attributes

Return Type

Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@std/http

Import symbol

import { deleteCookie } from "@std/http";
or

Import directly with a jsr specifier

import { deleteCookie } from "jsr:@std/http";