()
| 108 | } |
| 109 | |
| 110 | get primaryURL(): string | null { |
| 111 | if (this.version === B1) { |
| 112 | return this.b1PrimaryURL; |
| 113 | } |
| 114 | if (this.sections['primary']) { |
| 115 | return asString(this.sections['primary']); |
| 116 | } |
| 117 | return null; |
| 118 | } |
| 119 | |
| 120 | getResponse(url: string): Response { |
| 121 | return this.compatAdapter.getResponse(url); |
nothing calls this directly
no test coverage detected