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