Lines Matching refs:name
31 * @param {string} name
33 function validateCookieName (name) {
34 for (const char of name) {
57 throw new Error('Invalid cookie name')
119 IMF-fixdate = day-name "," SP date1 SP time-of-day SP GMT
123 day-name = %x4D.6F.6E ; "Mon", case-sensitive
201 if (cookie.name.length === 0) {
205 validateCookieName(cookie.name)
208 const out = [`${cookie.name}=${cookie.value}`]
212 if (cookie.name.startsWith('__Secure-')) {
216 if (cookie.name.startsWith('__Host-')) {