mol_plot_all 1.2.1138 → 1.2.1140
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 +90 -90
- package/node.deps.json +1 -1
- package/node.js +2 -1
- package/node.js.map +1 -1
- package/node.mjs +2 -1
- package/node.test.js +16 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +90 -90
- package/web.deps.json +1 -1
- package/web.js +2 -1
- package/web.js.map +1 -1
- package/web.mjs +2 -1
- package/web.test.js +14 -0
- package/web.test.js.map +1 -1
package/node.js
CHANGED
|
@@ -984,9 +984,10 @@ var $;
|
|
|
984
984
|
return right_cache;
|
|
985
985
|
}
|
|
986
986
|
else {
|
|
987
|
-
left_cache = new WeakMap(
|
|
987
|
+
left_cache = new WeakMap();
|
|
988
988
|
$.$mol_compare_deep_cache.set(left, left_cache);
|
|
989
989
|
}
|
|
990
|
+
left_cache.set(right, true);
|
|
990
991
|
let result;
|
|
991
992
|
try {
|
|
992
993
|
if (!left_proto)
|