(path: string)
| 39 | const EXTENSION_API_PREFIX = `/api${EXTENSION_HTTP_PREFIX}`; |
| 40 | |
| 41 | const extensionApiPath = (path: string) => `${EXTENSION_API_PREFIX}${path}`; |
| 42 | |
| 43 | const apiUrl = (settings: ExtensionSettings, path: string) => |
| 44 | new URL(path, settings.apiBaseUrl).toString(); |
no outgoing calls
no test coverage detected