mol_plot_all 1.2.245 → 1.2.246
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 +1 -1
- package/node.deps.json +1 -1
- package/node.esm.js +8 -1
- package/node.esm.js.map +1 -1
- package/node.js +8 -1
- package/node.js.map +1 -1
- package/node.test.js +89 -69
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +1 -1
- package/web.deps.json +1 -1
- package/web.esm.js +6 -1
- package/web.esm.js.map +1 -1
- package/web.js +6 -1
- package/web.js.map +1 -1
- package/web.test.js +88 -75
- package/web.test.js.map +1 -1
package/web.js
CHANGED
|
@@ -1638,7 +1638,12 @@ var $;
|
|
|
1638
1638
|
fiber = temp(obj, args);
|
|
1639
1639
|
return fiber.async();
|
|
1640
1640
|
};
|
|
1641
|
-
}
|
|
1641
|
+
},
|
|
1642
|
+
apply(obj, self, args) {
|
|
1643
|
+
const temp = $mol_wire_task.getter(obj);
|
|
1644
|
+
const fiber = temp(self, args);
|
|
1645
|
+
return fiber.async();
|
|
1646
|
+
},
|
|
1642
1647
|
});
|
|
1643
1648
|
}
|
|
1644
1649
|
$.$mol_wire_async = $mol_wire_async;
|