mirror of
https://github.com/langgenius/dify.git
synced 2025-07-04 07:34:51 +00: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)
|
||
|
}
|