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