2019-12-24 01:57:07 +09:00
|
|
|
export function capitalize(text: string): string {
|
2019-09-24 13:55:43 +09:00
|
|
|
if (text.length === 0) return '';
|
2019-09-17 14:30:26 +09:00
|
|
|
return text[0].toUpperCase() + text.slice(1).toLowerCase();
|
2019-07-31 01:12:51 +09:00
|
|
|
}
|