()
| 36 | function signal(): CapacitySignal { |
| 37 | const merged = new AbortController() |
| 38 | const abort = (): void => merged.abort() |
| 39 | if (outerSignal.aborted || wakeController.signal.aborted) { |
| 40 | merged.abort() |
| 41 | return { signal: merged.signal, cleanup: () => {} } |
nothing calls this directly
no outgoing calls
no test coverage detected