(event: IpcMainEvent | IpcMainInvokeEvent)
| 625 | } |
| 626 | |
| 627 | function requireEventWindow(event: IpcMainEvent | IpcMainInvokeEvent): BrowserWindow { |
| 628 | const win = BrowserWindow.fromWebContents(event.sender) |
| 629 | if (!win || win.isDestroyed()) { |
| 630 | throw new Error('No window is associated with this IPC call.') |
| 631 | } |
| 632 | return win |
| 633 | } |
| 634 | |
| 635 | function isPathInsideVault(absPath: string): boolean { |
| 636 | const win = currentIpcWindow() |
no outgoing calls
no test coverage detected