We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec7180b commit e52a4c2Copy full SHA for e52a4c2
src/utils/string.js
@@ -0,0 +1,3 @@
1
+export function uppercaseFirst(string) {
2
+ return string.substr(0, 1).toUpperCase() + string.substr(1)
3
+}
0 commit comments