UNPKG
create-graphql-guru
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Command line scaffolding and generator for Graphql Guru
create-graphql-guru
/
src
/
utils.js
5 lines
(4 loc)
•
176 B
JavaScript
View Raw
1
2
3
4
5
export
const
capitalize
= str => {
const
firstCharUpperCase = str.
charAt
(
0
).
toUpperCase
();
return
`
${firstCharUpperCase}
${str.substr(
1
, str.length -
1
).toLowerCase()}
`
; };