Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export function versionCompareFunction(versionA: string, versionB: string): number {
if (!toolLib.isExplicitVersion(versionA) || !toolLib.isExplicitVersion(versionB)) {
throw tl.loc("VersionsCanNotBeCompared", versionA, versionB);
}
return semver.compare(versionA, versionB);
}