UNPKG

create-graphql-guru

Version:

Command line scaffolding and generator for Graphql Guru

5 lines (4 loc) 176 B
export const capitalize = str => { const firstCharUpperCase = str.charAt(0).toUpperCase(); return `${firstCharUpperCase}${str.substr(1, str.length - 1).toLowerCase()}`; };