(name: string, value: string)
| 493 | let newBody = body; |
| 494 | |
| 495 | const addArg = (name: string, value: string) => { |
| 496 | let delim = '?'; |
| 497 | if (url.includes('?')) { |
| 498 | delim = '&'; |
| 499 | } |
| 500 | url = `${url}${delim}${name}=${value}`; |
| 501 | }; |
| 502 | if (cacheKey || job) { |
| 503 | if (cacheKey) addArg('cacheKey', cacheKey); |
| 504 | if (job) addArg('job', job); |
no outgoing calls
no test coverage detected
searching dependent graphs…