(a: PythonVersion, b: PythonVersion)
| 110 | } |
| 111 | |
| 112 | function versionsEqual(a: PythonVersion, b: PythonVersion): boolean { |
| 113 | return a.major === b.major && a.minor === b.minor; |
| 114 | } |
| 115 | |
| 116 | function versionLessOrEqual(a: PythonVersion, b: PythonVersion): boolean { |
| 117 | const am = a.major ?? 0; |
no outgoing calls
no test coverage detected