Lines Matching refs:names
105 // Note: undici does not implement forbidden header names
298 // Note: undici does not implement forbidden header names
397 // Note: undici does not implement forbidden header names
437 // 2. Let names be the result of convert header names to a sorted-lowercase
438 // set with all the names of the headers in list.
439 const names = [...this[kHeadersList]].sort((a, b) => a[0] < b[0] ? -1 : 1)
442 // 3. For each name of names:
443 for (let i = 0; i < names.length; ++i) {
444 const [name, value] = names[i]