UNPKG

vue-moo

Version:

moo

6 lines (5 loc) 183 B
export default (word) => { if (typeof word !== 'string') return word; const firstLetter = word.charAt(0); return `${firstLetter.toUpperCase()}${word.substr(1, word.length)}`; }