(basePath, laterPath)
| 12 | }, |
| 13 | |
| 14 | join(basePath, laterPath) { |
| 15 | if (!basePath) { |
| 16 | return laterPath; |
| 17 | } |
| 18 | return this.extractUrlParts(laterPath, basePath).path; |
| 19 | }, |
| 20 | |
| 21 | doXHR(url, type, callback, errback) { |
| 22 | const xhr = new XMLHttpRequest(); |
nothing calls this directly
no test coverage detected