()
| 26 | |
| 27 | let timer: ReturnType<typeof setTimeout> | undefined |
| 28 | const abortCombined = () => { |
| 29 | if (timer !== undefined) clearTimeout(timer) |
| 30 | combined.abort() |
| 31 | } |
| 32 | |
| 33 | if (timeoutMs !== undefined) { |
| 34 | timer = setTimeout(abortCombined, timeoutMs) |
nothing calls this directly
no outgoing calls
no test coverage detected