Compare commits
No commits in common. "cf6e0a986f46121f71e590a4e36f3cf0380e319c" and "47eba446b7a41c426f50277ea31154d1377e1bda" have entirely different histories.
cf6e0a986f
...
47eba446b7
|
@ -29,7 +29,7 @@ class DHTOnlineBase extends events_1.default {
|
|||
}
|
||||
_data;
|
||||
get data() {
|
||||
return { ...this._data };
|
||||
return this._data;
|
||||
}
|
||||
set data(value) {
|
||||
this._data = value;
|
||||
|
|
|
@ -33,7 +33,7 @@ export default class DHTOnlineBase extends EventEmitter {
|
|||
private _data: {};
|
||||
|
||||
get data(): {} {
|
||||
return { ...this._data };
|
||||
return this._data;
|
||||
}
|
||||
|
||||
set data(value: {}) {
|
||||
|
|
Loading…
Reference in New Issue