UNPKG

openapi-tsk

Version:
13 lines (12 loc) 326 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.StringUtil = void 0; class StringUtil { static capitalize(str) { if (!str) return this.EMPTY; return str.charAt(0).toUpperCase() + str.slice(1); } } exports.StringUtil = StringUtil; StringUtil.EMPTY = "";