()
| 191 | return options.resourceType ?? 'document'; |
| 192 | }, |
| 193 | headers(): Record<string, string> { |
| 194 | return ( |
| 195 | options.headers ?? { |
| 196 | 'content-size': '10', |
| 197 | } |
| 198 | ); |
| 199 | }, |
| 200 | redirectChain(): HTTPRequest[] { |
| 201 | // Puppeteer returns a fresh copy on every call (HTTPRequest returns |
| 202 | // `this._redirectChain.slice()`); mirror that so formatters can't share |
nothing calls this directly
no outgoing calls
no test coverage detected