mirror of
https://github.com/thelounge/thelounge
synced 2024-12-26 12:23:07 +00:00
10 lines
139 B
JavaScript
10 lines
139 B
JavaScript
var _ = require("lodash");
|
|
|
|
module.exports = User;
|
|
|
|
function User(attr) {
|
|
_.merge(this, _.extend({
|
|
mode: "",
|
|
name: "",
|
|
}, attr));
|
|
};
|