(a: string, b: string)
| 40 | |
| 41 | /** Compare two versions: -1 if a < b, 0 if equal, 1 if a > b */ |
| 42 | export function compareVersions(a: string, b: string): number { |
| 43 | return compare(a, b); |
| 44 | } |
| 45 | |
| 46 | export function isValidVersion(version: string): boolean { |
| 47 | return isValid(version); |
no outgoing calls
no test coverage detected
searching dependent graphs…