1
0
mirror of https://github.com/uetchy/namae.git synced 2025-03-20 05:50:32 +09:00
namae/web/src/util/text.ts

5 lines
143 B
TypeScript
Raw Normal View History

2019-09-01 01:28:24 +09:00
export function capitalize(text: 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
}