1
0
mirror of https://github.com/uetchy/namae.git synced 2025-08-20 18:08:11 +09:00

feat: alternatives

This commit is contained in:
2019-07-31 01:12:51 +09:00
parent 7626959819
commit f9c70c3363
9 changed files with 185 additions and 124 deletions

3
src/util/text.js Normal file
View File

@@ -0,0 +1,3 @@
export function capitalize(text) {
return text[0].toUpperCase() + text.slice(1)
}