(path: string)
| 132 | } |
| 133 | |
| 134 | function ensureTrailingSlash(path: string): string { |
| 135 | return path.endsWith('/') ? path : `${path}/`; |
| 136 | } |
| 137 | |
| 138 | function getDirectoryRootUrl(baseUrl: string): URL | null { |
| 139 | try { |
no outgoing calls
no test coverage detected