Compare commits

..

No commits in common. "cf6e0a986f46121f71e590a4e36f3cf0380e319c" and "47eba446b7a41c426f50277ea31154d1377e1bda" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ class DHTOnlineBase extends events_1.default {
} }
_data; _data;
get data() { get data() {
return { ...this._data }; return this._data;
} }
set data(value) { set data(value) {
this._data = value; this._data = value;

View File

@ -33,7 +33,7 @@ export default class DHTOnlineBase extends EventEmitter {
private _data: {}; private _data: {};
get data(): {} { get data(): {} {
return { ...this._data }; return this._data;
} }
set data(value: {}) { set data(value: {}) {