UNPKG

vue-moo

Version:

moo

11 lines (9 loc) 271 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = function (word) { if (typeof word !== 'string') return word; var firstLetter = word.charAt(0); return '' + firstLetter.toUpperCase() + word.substr(1, word.length); };