mol_plot_all 1.2.339 → 1.2.340

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mol_plot_all",
3
- "version": "1.2.339",
3
+ "version": "1.2.340",
4
4
  "main": "node.js",
5
5
  "module": "node.esm.js",
6
6
  "browser": "web.js",
package/test.html CHANGED
@@ -2,10 +2,10 @@
2
2
  <script src="/mol/build/client/client.js" charset="utf-8"></script>
3
3
  <script src="web.test.js" charset="utf-8"></script>
4
4
  <script>
5
- addEventListener( 'load', ()=> {
5
+ addEventListener( 'load', ()=> setTimeout( ()=> {
6
6
  const audit = document.createElement( 'script' )
7
7
  audit.src = 'web.audit.js'
8
8
  document.head.appendChild( audit )
9
- } )
9
+ }, 500 ) )
10
10
  </script>
11
11
 
package/web.esm.js CHANGED
@@ -1084,7 +1084,7 @@ var $;
1084
1084
  if (left instanceof RegExp)
1085
1085
  return left.source === right['source'] && left.flags === right['flags'];
1086
1086
  if (left instanceof Error)
1087
- return left.stack === right['stack'];
1087
+ return left.message === right['message'] && left.stack === right['stack'];
1088
1088
  let left_cache = $.$mol_compare_deep_cache.get(left);
1089
1089
  if (left_cache) {
1090
1090
  const right_cache = left_cache.get(right);