Files

7 lines
203 B
JavaScript
Raw Permalink Normal View History

2022-01-13 11:43:36 +01:00
function capitalizeTxt(txt) {
return txt.charAt(0).toUpperCase() + txt.slice(1); //or if you want lowercase the rest txt.slice(1).toLowerCase();
}
module.exports = {
2022-01-13 11:55:21 +01:00
capitalizeTxt: capitalizeTxt
2022-01-13 11:43:36 +01:00
}