var TwoFer = function () {}; TwoFer.prototype.twoFer = function (who) { if (who) { return 'One for ' + who + ', one for me.'; } return 'One for you, one for me.'; }; module.exports = TwoFer;