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

4 lines
84 B
JavaScript
Raw Normal View History

2019-07-31 01:12:51 +09:00
export function capitalize(text) {
return text[0].toUpperCase() + text.slice(1)
}