| 3 | const DEFAULT_API_VERSION = 'v1'; |
| 4 | |
| 5 | class ApiClient { |
| 6 | constructor(resource, options = {}) { |
| 7 | this.apiVersion = `/api/${options.apiVersion || DEFAULT_API_VERSION}`; |
| 8 | this.options = options; |
nothing calls this directly
no outgoing calls
no test coverage detected