6 lines
124 B
JavaScript
6 lines
124 B
JavaScript
function capitalize(str) {
|
|
return (str.charAt(0).toUpperCase() + str.slice(1).toLowerCase());
|
|
}
|
|
|
|
export { capitalize };
|