'use strict'; module.exports = function(s) { return s.substr(0, 1).toUpperCase() + s.substring(1); };