mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 18:47:35 +00:00
17 lines
No EOL
293 B
JavaScript
Executable file
17 lines
No EOL
293 B
JavaScript
Executable file
define([
|
|
],
|
|
|
|
function () {
|
|
|
|
function User (id, options) {
|
|
this.id = id;
|
|
this.options = options;
|
|
|
|
this.options.id = this.id;
|
|
if(!this.options.nickname) {
|
|
this.options.nickname = this.id;
|
|
}
|
|
}
|
|
|
|
return User;
|
|
}); |