()
| 51 | } |
| 52 | |
| 53 | export function getDownloadArchiveExtension() { |
| 54 | return process.platform === 'win32' ? 'zip' : 'tar.gz'; |
| 55 | } |
| 56 | |
| 57 | export function isVersionSatisfies(range: string, version: string): boolean { |
| 58 | // Some distributions (e.g. JetBrains Runtime) publish 4-segment versions |
no outgoing calls
no test coverage detected