mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 09:36:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			6 lines
		
	
	
		
			144 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			144 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
function capitalize(value: string): string {
 | 
						|
    return value.charAt(0).toUpperCase() + value.slice(1).toLowerCase();
 | 
						|
}
 | 
						|
 | 
						|
export { capitalize };
 |