(exception: unknown)
| 234 | * @internal Only considered for internal usage |
| 235 | */ |
| 236 | export function isAlreadyCaptured(exception: unknown): boolean | void { |
| 237 | try { |
| 238 | return (exception as { __sentry_captured__?: boolean }).__sentry_captured__; |
| 239 | } catch {} // eslint-disable-line no-empty |
| 240 | } |
no outgoing calls
no test coverage detected