( err: HandledError )
| 17 | } |
| 18 | |
| 19 | export function unwrapHandledError( |
| 20 | err: HandledError |
| 21 | ): ErrorData | Record<string, never> { |
| 22 | return handledErrorSymbol in err ? err[handledErrorSymbol] : {}; |
| 23 | } |
| 24 | |
| 25 | export function wrapHandledError( |
| 26 | err: Error, |
no outgoing calls
no test coverage detected