(error: unknown)
| 48 | : Effect.die(error) |
| 49 | |
| 50 | const isRetryable = (error: unknown) => { |
| 51 | if (error instanceof CauseException) { |
| 52 | return isHttpClientError(error.cause) || S.is(ServiceUnavailableError)(error.cause) |
| 53 | } |
| 54 | return false |
| 55 | } |
| 56 | |
| 57 | const isInputOption = <I>(value: I | Option.Option<I> | undefined): value is Option.Option<I> => Option.isOption(value) |
| 58 |
no test coverage detected
searching dependent graphs…