mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 02:57:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			217 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			217 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import semver from 'semver';
 | |
| 
 | |
| export const hasAnUpdateAvailable = (latestVersion, currentVersion) => {
 | |
|   if (!semver.valid(latestVersion)) {
 | |
|     return false;
 | |
|   }
 | |
|   return semver.lt(currentVersion, latestVersion);
 | |
| };
 | 
