Co-authored-by: AkaraChen <[email protected]> Co-authored-by: Yi <[email protected]> Co-authored-by: Joel <[email protected]> Co-authored-by: JzoNg <[email protected]> Co-authored-by: twwu <[email protected]> Co-authored-by: kurokobo <[email protected]> Co-authored-by: Hiroshi Fujita <[email protected]>
10 lines
225 B
TypeScript
10 lines
225 B
TypeScript
import semver from 'semver'
|
|
|
|
export const getLatestVersion = (versionList: string[]) => {
|
|
return semver.rsort(versionList)[0]
|
|
}
|
|
|
|
export const compareVersion = (v1: string, v2: string) => {
|
|
return semver.compare(v1, v2)
|
|
}
|