"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.titleCase = void 0;
function titleCase(str) {
return str.toLowerCase().split(' ').map(function (word) {
return word.replace(word[0], word[0].toUpperCase());
}).join(' ');
}
exports.titleCase = titleCase;