1function capitalize(value: string): string { 2 return value.charAt(0).toUpperCase() + value.slice(1).toLowerCase(); 3} 4 5export { capitalize }; 6 7