Build a fully-qualified URL for the given API path.
(path: string)
| 89 | |
| 90 | /** Build a fully-qualified URL for the given API path. */ |
| 91 | url(path: string): string { |
| 92 | return `${this._baseUrl}${path}`; |
| 93 | } |
| 94 | |
| 95 | /** |
| 96 | * Execute an HTTP request and return the parsed JSON response. |
no outgoing calls
no test coverage detected