mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-31 02:42:59 +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) | ||
|  | } |