to-title-case.js 185 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 const toTitleCase = function(string) { if (typeof string !== 'string') { return string; } return string.replace(/./, (w) => w.toUpperCase()); }; export default toTitleCase;