var UppercaseFirst = function (str){ return str && str[0].toUpperCase() + str.slice(1); } ; module.exports = UppercaseFirst;