(self: SupervisorPatch, that: SupervisorPatch)
| 71 | * @internal |
| 72 | */ |
| 73 | export const combine = (self: SupervisorPatch, that: SupervisorPatch): SupervisorPatch => { |
| 74 | return { |
| 75 | _tag: OP_AND_THEN, |
| 76 | first: self, |
| 77 | second: that |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Applies a `SupervisorPatch` to a `Supervisor` to produce a new `Supervisor`. |
no outgoing calls
no test coverage detected
searching dependent graphs…