UNPKG

st-open-api

Version:

Generates API client SDKs from an OpenAPI specification written in OpenAPI version 3.x.x

8 lines 318 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.firstCharacterUpper = void 0; var firstCharacterUpper = function (str) { return !!str && str[0].toUpperCase() + str.slice(1); }; exports.firstCharacterUpper = firstCharacterUpper; //# sourceMappingURL=first-character-upper.js.map