()
| 54 | } |
| 55 | |
| 56 | function getExecutor(): Executor { |
| 57 | const executor = (globalThis as unknown as { Executor?: Executor }).Executor; |
| 58 | if (!executor) { |
| 59 | throw new Error("Executor plugin is not available"); |
| 60 | } |
| 61 | return executor; |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * Get the background executor |
no outgoing calls
no test coverage detected