UNPKG

mens

Version:

Isomorphic Mithril Javascript Framework (w/ Websockets)

15 lines (11 loc) 295 B
module.exports = function (params) { this.flags = params.flags; this.session = params.session; this.makeHappy = function () { m.socket.emit('changeMood', {mood: 'happy'}); }; this.makeSad = function () { m.socket.emit('changeMood', {mood: 'sad'}); }; return this; };