create-graphql-guru
Version:
Command line scaffolding and generator for Graphql Guru
10 lines (9 loc) • 317 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var capitalize = exports.capitalize = function capitalize(str) {
var firstCharUpperCase = str.charAt(0).toUpperCase();
return "" + firstCharUpperCase + str.substr(1, str.length - 1).toLowerCase();
};
//# sourceMappingURL=utils.js.map