Lines Matching refs:cookie
31 const cookie = headers.get('cookie')
34 if (!cookie) {
38 for (const piece of cookie.split(';')) {
62 // https://github.com/denoland/deno_std/blob/63827b16330b82489a04614027c33b7904e08be5/http/cookie.ts#L278
92 * @param {Cookie} cookie
95 function setCookie (headers, cookie) {
100 cookie = webidl.converters.Cookie(cookie)
102 const str = stringify(cookie)
105 headers.append('Set-Cookie', stringify(cookie))