mol_plot_all 1.2.241 → 1.2.242
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/node.d.ts +0 -1
- package/node.deps.json +1 -1
- package/node.esm.js +1 -23
- package/node.esm.js.map +1 -1
- package/node.js +1 -23
- package/node.js.map +1 -1
- package/node.test.js +3 -50
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +0 -1
- package/web.deps.json +1 -1
- package/web.esm.js +1 -23
- package/web.esm.js.map +1 -1
- package/web.js +1 -23
- package/web.js.map +1 -1
- package/web.test.js +2 -27
- package/web.test.js.map +1 -1
package/node.js
CHANGED
|
@@ -1739,26 +1739,7 @@ var $;
|
|
|
1739
1739
|
}
|
|
1740
1740
|
}
|
|
1741
1741
|
resync(...args) {
|
|
1742
|
-
|
|
1743
|
-
try {
|
|
1744
|
-
res = this.recall(...args);
|
|
1745
|
-
}
|
|
1746
|
-
catch (error) {
|
|
1747
|
-
if (error instanceof Promise)
|
|
1748
|
-
$mol_fail_hidden(error);
|
|
1749
|
-
res = error;
|
|
1750
|
-
}
|
|
1751
|
-
try {
|
|
1752
|
-
this.once();
|
|
1753
|
-
}
|
|
1754
|
-
catch (error) {
|
|
1755
|
-
if (error instanceof Promise)
|
|
1756
|
-
$mol_fail_hidden(error);
|
|
1757
|
-
}
|
|
1758
|
-
return this.put(res);
|
|
1759
|
-
}
|
|
1760
|
-
recall(...args) {
|
|
1761
|
-
return this.task.call(this.host, ...args);
|
|
1742
|
+
return this.put(this.task.call(this.host, ...args));
|
|
1762
1743
|
}
|
|
1763
1744
|
once() {
|
|
1764
1745
|
return this.sync();
|
|
@@ -1807,9 +1788,6 @@ var $;
|
|
|
1807
1788
|
__decorate([
|
|
1808
1789
|
$mol_wire_method
|
|
1809
1790
|
], $mol_wire_atom.prototype, "resync", null);
|
|
1810
|
-
__decorate([
|
|
1811
|
-
$mol_wire_method
|
|
1812
|
-
], $mol_wire_atom.prototype, "recall", null);
|
|
1813
1791
|
__decorate([
|
|
1814
1792
|
$mol_wire_method
|
|
1815
1793
|
], $mol_wire_atom.prototype, "once", null);
|