( self: SupervisorPatch, supervisor: Supervisor.Supervisor<any> )
| 84 | * @internal |
| 85 | */ |
| 86 | export const patch = ( |
| 87 | self: SupervisorPatch, |
| 88 | supervisor: Supervisor.Supervisor<any> |
| 89 | ): Supervisor.Supervisor<any> => { |
| 90 | return patchLoop(supervisor, Chunk.of(self)) |
| 91 | } |
| 92 | |
| 93 | /** @internal */ |
| 94 | const patchLoop = ( |
no test coverage detected