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/web.js
CHANGED
|
@@ -1258,26 +1258,7 @@ var $;
|
|
|
1258
1258
|
}
|
|
1259
1259
|
}
|
|
1260
1260
|
resync(...args) {
|
|
1261
|
-
|
|
1262
|
-
try {
|
|
1263
|
-
res = this.recall(...args);
|
|
1264
|
-
}
|
|
1265
|
-
catch (error) {
|
|
1266
|
-
if (error instanceof Promise)
|
|
1267
|
-
$mol_fail_hidden(error);
|
|
1268
|
-
res = error;
|
|
1269
|
-
}
|
|
1270
|
-
try {
|
|
1271
|
-
this.once();
|
|
1272
|
-
}
|
|
1273
|
-
catch (error) {
|
|
1274
|
-
if (error instanceof Promise)
|
|
1275
|
-
$mol_fail_hidden(error);
|
|
1276
|
-
}
|
|
1277
|
-
return this.put(res);
|
|
1278
|
-
}
|
|
1279
|
-
recall(...args) {
|
|
1280
|
-
return this.task.call(this.host, ...args);
|
|
1261
|
+
return this.put(this.task.call(this.host, ...args));
|
|
1281
1262
|
}
|
|
1282
1263
|
once() {
|
|
1283
1264
|
return this.sync();
|
|
@@ -1326,9 +1307,6 @@ var $;
|
|
|
1326
1307
|
__decorate([
|
|
1327
1308
|
$mol_wire_method
|
|
1328
1309
|
], $mol_wire_atom.prototype, "resync", null);
|
|
1329
|
-
__decorate([
|
|
1330
|
-
$mol_wire_method
|
|
1331
|
-
], $mol_wire_atom.prototype, "recall", null);
|
|
1332
1310
|
__decorate([
|
|
1333
1311
|
$mol_wire_method
|
|
1334
1312
|
], $mol_wire_atom.prototype, "once", null);
|