(self: Layer.Layer<A, E, R>)
| 832 | |
| 833 | /** @internal */ |
| 834 | export const orDie = <A, E, R>(self: Layer.Layer<A, E, R>): Layer.Layer<A, never, R> => |
| 835 | catchAll(self, (defect) => die(defect)) |
| 836 | |
| 837 | /** @internal */ |
| 838 | export const orElse = dual< |
nothing calls this directly
no test coverage detected
searching dependent graphs…