mirror of
				https://github.com/mickael-kerjean/filestash.git
				synced 2025-10-31 01:58:11 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			6 lines
		
	
	
		
			175 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			175 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| export function formatTimecode(seconds) {
 | |
|     return String(parseInt(seconds / 60)).padStart(2, "0") +
 | |
|         ":"+
 | |
|         String(parseInt(seconds % 60)).padStart(2, "0");
 | |
| }
 | 
