mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
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)
|
|
}
|