(signals: RedlockAbortSignal[] = [])
| 22 | } |
| 23 | |
| 24 | export function checkRedlockSignalAborted(signals: RedlockAbortSignal[] = []) { |
| 25 | for (const signal of signals) { |
| 26 | if (signal.aborted) { |
| 27 | throw signal.error; |
| 28 | } |
| 29 | } |
| 30 | } |
no outgoing calls
no test coverage detected