(name: string, value: string)
| 45 | return this._map[name.toLowerCase()] ?? null; |
| 46 | } |
| 47 | set(name: string, value: string): void { |
| 48 | this._map[name.toLowerCase()] = value; |
| 49 | } |
| 50 | has(name: string): boolean { |
| 51 | return name.toLowerCase() in this._map; |
| 52 | } |
no outgoing calls