(...types: (keyof typeof source)[])
| 25 | } |
| 26 | |
| 27 | add(...types: (keyof typeof source)[]): Headers { |
| 28 | for (const type of types) { |
| 29 | for (const [key, value] of Object.entries(source[type])) { |
| 30 | this.set(key, value); |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | return this; |
| 35 | } |
| 36 | } |
no outgoing calls
no test coverage detected