(error: unknown, fallback: string)
| 74 | } |
| 75 | |
| 76 | function getErrorMessage(error: unknown, fallback: string): string { |
| 77 | return error instanceof Error ? error.message : fallback; |
| 78 | } |
| 79 | |
| 80 | async function yieldToPaint(deps: Pick<LocalSourceBaseDeps, 'waitForPaint'>): Promise<void> { |
| 81 | await (deps.waitForPaint ?? waitForBrowserPaint)(); |
no outgoing calls
no test coverage detected