(url)
| 40 | } |
| 41 | |
| 42 | async function openUrl(url) { |
| 43 | if (window.cordova?.exec) { |
| 44 | const { default: customTab } = await import("./customTab"); |
| 45 | await customTab(url); |
| 46 | return; |
| 47 | } |
| 48 | |
| 49 | window.open(url, "_blank", "noopener,noreferrer"); |
| 50 | } |
| 51 | |
| 52 | async function openExtensions(keyword) { |
| 53 | const { openWithSearch } = await import("sidebarApps/extensions"); |
no test coverage detected