(source)
| 45 | } |
| 46 | |
| 47 | async function getTabId(source) { |
| 48 | const registry = await getTabRegistry(); |
| 49 | return registry[source]?.tabId || null; |
| 50 | } |
| 51 | |
| 52 | async function rememberSourceLastUrl(source, url) { |
| 53 | if (!source || !url) return; |
no test coverage detected