mirror of
				https://github.com/mickael-kerjean/filestash.git
				synced 2025-11-04 13:35:46 +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");
 | 
						|
}
 |