UNPKG

@iredium/butterfly

Version:
10 lines (9 loc) 305 B
"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;