mirror of
				https://github.com/tobspr/shapez.io.git
				synced 2025-06-13 13:04:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			291 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			291 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /**
 | |
|  * Generates a cachebuster string. This only modifies the path in the browser version
 | |
|  * @param {string} path
 | |
|  */
 | |
| export function cachebust(path) {
 | |
|     if (G_IS_BROWSER && !G_IS_STANDALONE && !G_IS_DEV) {
 | |
|         return "/v/" + G_BUILD_COMMIT_HASH + "/" + path;
 | |
|     }
 | |
|     return path;
 | |
| }
 |