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

4 lines
106 B
TypeScript
Raw Normal View History

2019-09-01 01:28:24 +09:00
export function capitalize(text: string) {
2019-07-31 04:25:08 +09:00
return text[0].toUpperCase() + text.slice(1).toLowerCase()
2019-07-31 01:12:51 +09:00
}