(func: WrappedFunction<T>)
| 120 | */ |
| 121 | // eslint-disable-next-line @typescript-eslint/ban-types |
| 122 | export function getOriginalFunction<T extends Function>(func: WrappedFunction<T>): T | undefined { |
| 123 | return func.__sentry_original__; |
| 124 | } |
| 125 | |
| 126 | /** |
| 127 | * Transforms any `Error` or `Event` into a plain object with all of their enumerable properties, and some of their |
no outgoing calls
no test coverage detected