blob: 39f7497b58aa0db8c5d4b5af374f8aa8142812e2 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
/**
*
* @param {String} word
* @returns Capitalised Word
*/
export default function capitalise(word) {
return word.charAt(0).toUpperCase() + word.slice(1).toLowerCase();
}
|