1
1
'use strict'
2
2
3
3
const { parseSetCookie } = require ( './parse' )
4
- const { stringify } = require ( './util' )
4
+ const { stringify, getHeadersList } = require ( './util' )
5
5
const { webidl } = require ( '../fetch/webidl' )
6
6
const { Headers } = require ( '../fetch/headers' )
7
- const { kHeadersList } = require ( '../core/symbols' )
8
7
9
8
/**
10
9
* @typedef {Object } Cookie
@@ -27,9 +26,9 @@ const { kHeadersList } = require('../core/symbols')
27
26
function getCookies ( headers ) {
28
27
webidl . argumentLengthCheck ( arguments , 1 , { header : 'getCookies' } )
29
28
30
- webidl . brandCheck ( headers , Headers )
29
+ webidl . brandCheck ( headers , Headers , { strict : false } )
31
30
32
- const cookie = headers [ kHeadersList ] . get ( 'cookie' )
31
+ const cookie = headers . get ( 'cookie' )
33
32
const out = { }
34
33
35
34
if ( ! cookie ) {
@@ -54,7 +53,7 @@ function getCookies (headers) {
54
53
function deleteCookie ( headers , name , attributes ) {
55
54
webidl . argumentLengthCheck ( arguments , 2 , { header : 'deleteCookie' } )
56
55
57
- webidl . brandCheck ( headers , Headers )
56
+ webidl . brandCheck ( headers , Headers , { strict : false } )
58
57
59
58
name = webidl . converters . DOMString ( name )
60
59
attributes = webidl . converters . DeleteCookieAttributes ( attributes )
@@ -76,9 +75,9 @@ function deleteCookie (headers, name, attributes) {
76
75
function getSetCookies ( headers ) {
77
76
webidl . argumentLengthCheck ( arguments , 1 , { header : 'getSetCookies' } )
78
77
79
- webidl . brandCheck ( headers , Headers )
78
+ webidl . brandCheck ( headers , Headers , { strict : false } )
80
79
81
- const cookies = headers [ kHeadersList ] . cookies
80
+ const cookies = getHeadersList ( headers ) . cookies
82
81
83
82
if ( ! cookies ) {
84
83
return [ ]
@@ -95,7 +94,7 @@ function getSetCookies (headers) {
95
94
function setCookie ( headers , cookie ) {
96
95
webidl . argumentLengthCheck ( arguments , 2 , { header : 'setCookie' } )
97
96
98
- webidl . brandCheck ( headers , Headers )
97
+ webidl . brandCheck ( headers , Headers , { strict : false } )
99
98
100
99
cookie = webidl . converters . Cookie ( cookie )
101
100
0 commit comments