(url: string)
| 176 | } |
| 177 | |
| 178 | export async function openUrlInBrowser(url: string) { |
| 179 | await shell.open(url) |
| 180 | } |
| 181 | |
| 182 | export function compareVersions(v1: string, v2: string) { |
| 183 | v1 = v1.replace(/[^0-9.]/g, '') |
no outgoing calls
no test coverage detected