UNPKG

185 BJavaScriptView Raw
1const toTitleCase = function(string) {
2 if (typeof string !== 'string') {
3 return string;
4 }
5
6 return string.replace(/./, (w) => w.toUpperCase());
7};
8
9export default toTitleCase;