Make _community non-enumerable on CConfirmation

This commit is contained in:
Alexander Corn 2016-07-13 13:11:56 -04:00
parent 575c196cb7
commit 153011e1c9

View File

@ -1,7 +1,7 @@
module.exports = CConfirmation;
function CConfirmation(community, data) {
this._community = community;
Object.defineProperty(this, "_community", {"value": community});
this.id = data.id;
this.key = data.key;