st-open-api
Version:
Generates API client SDKs from an OpenAPI specification written in OpenAPI version 3.x.x
8 lines • 318 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.firstCharacterLower = void 0;
var firstCharacterLower = function (str) {
return !!str && str[0].toLowerCase() + str.slice(1);
};
exports.firstCharacterLower = firstCharacterLower;
//# sourceMappingURL=first-character-lower.js.map