@dra2020/baseclient 1.0.152 → 1.0.153
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/baseclient.js
CHANGED
|
@@ -1147,6 +1147,14 @@ class DataFlow {
|
|
|
1147
1147
|
this.inCompute = false;
|
|
1148
1148
|
}
|
|
1149
1149
|
// override in subclass
|
|
1150
|
+
destroy() {
|
|
1151
|
+
this._destroy();
|
|
1152
|
+
}
|
|
1153
|
+
_destroy() {
|
|
1154
|
+
// Premise is that the 'id' value may contain significant storage
|
|
1155
|
+
this.usesList.forEach(ui => { delete ui.id; });
|
|
1156
|
+
}
|
|
1157
|
+
// override in subclass
|
|
1150
1158
|
dfid() { return null; }
|
|
1151
1159
|
// override in subclass
|
|
1152
1160
|
compute() {
|