mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
7 lines
205 B
JavaScript
7 lines
205 B
JavaScript
function capitalizeTxt(txt) {
|
|
return txt.charAt(0).toUpperCase() + txt.slice(1); //or if you want lowercase the rest txt.slice(1).toLowerCase();
|
|
}
|
|
|
|
module.exports = {
|
|
capitalizeTxt: capitalizeTxt
|
|
} |