UNPKG

@worker-tools/request-cookie-store

Version:

An implementation of the Cookie Store API for request handlers.

21 lines (20 loc) 971 B
import type { CookieInit } from 'cookie-store-interface'; export declare const attrsToSetCookie: (attrs: string[][]) => string; declare type Attr = [string] | [string, string]; declare type Attrs = [[string, string], ...Attr[]]; /** * Implements <https://wicg.github.io/cookie-store/#set-a-cookie> * with some additional behaviors taken from Chrome's implementation. */ export declare function setCookie(options: string | CookieInit, value?: string, origin?: URL, encode?: (x?: string | undefined) => string): [Attrs, Date | null] | null; /** * A not-so-strict parser for cookie headers. * - Allows pretty much everything in the value, including `=` * - Trims keys and values * - Ignores when both name and value are empty (but either empty allowed) * * For more on the state of allowed cookie characters, * see <https://stackoverflow.com/a/1969339/870615>. */ export declare function parseCookieHeader(cookie?: string | null): Map<string, string>; export {};