thelounge/src/models/user.js
Pavel Djundik 3711aefc2d Merge pull request #664 from thelounge/xpaw/fix-defaults
Fix memory and reference shuffling when creating models
2016-10-15 14:14:53 +03:00

20 lines
385 B
JavaScript

"use strict";
var _ = require("lodash");
module.exports = User;
function User(attr, prefixLookup) {
_.defaults(this, attr, {
modes: [],
nick: ""
});
// irc-framework sets character mode, but lounge works with symbols
this.modes = this.modes.map(mode => prefixLookup[mode]);
// TODO: Remove this
this.name = this.nick;
this.mode = (this.modes && this.modes[0]) || "";
}