(renderedPath: string, baseUrl: string, pathAndQuery: string)
| 131 | } |
| 132 | |
| 133 | function joinFullUrl(renderedPath: string, baseUrl: string, pathAndQuery: string): string { |
| 134 | if (renderedPath.length) { |
| 135 | return join(baseUrl, '/', pathAndQuery); |
| 136 | } else { |
| 137 | return join(baseUrl, '?', pathAndQuery); |
| 138 | } |
| 139 | } |
| 140 | |
| 141 | function urlcatImpl( |
| 142 | pathTemplate: string, |
no test coverage detected
searching dependent graphs…