mirror of
https://github.com/langgenius/dify.git
synced 2025-07-27 11:30:14 +00:00

Co-authored-by: jZonG <jzongcode@gmail.com> Co-authored-by: Novice <novice12185727@gmail.com> Co-authored-by: nite-knite <nkCoding@gmail.com> Co-authored-by: Hanqing Zhao <sherry9277@gmail.com>
14 lines
367 B
TypeScript
14 lines
367 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)
|
|
}
|
|
|
|
export const isEqualOrLaterThanVersion = (baseVersion: string, targetVersion: string) => {
|
|
return semver.gte(baseVersion, targetVersion)
|
|
}
|