(imageName: string)
| 628 | } |
| 629 | |
| 630 | const imageVersion = (imageName: string) => { |
| 631 | const image = availableImages.value.find((img) => img.name === imageName); |
| 632 | return image?.version; |
| 633 | }; |
| 634 | |
| 635 | const verGE = (versionStr: string, otherVersionStr: string) => { |
| 636 | const versionParts = versionStr.split('.').map(Number); |
no outgoing calls
no test coverage detected