mirror of
https://github.com/uetchy/namae.git
synced 2025-03-20 05:50:32 +09:00
4 lines
84 B
JavaScript
4 lines
84 B
JavaScript
|
export function capitalize(text) {
|
||
|
return text[0].toUpperCase() + text.slice(1)
|
||
|
}
|