@aws-amplify/appsync-modelgen-plugin
Version:
12 lines • 382 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.toLower = exports.toUpper = void 0;
function toUpper(word) {
return word.charAt(0).toUpperCase() + word.slice(1);
}
exports.toUpper = toUpper;
function toLower(word) {
return word.charAt(0).toLowerCase() + word.slice(1);
}
exports.toLower = toLower;
//# sourceMappingURL=stringUtils.js.map