mol_plot_all 1.2.960 → 1.2.961

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/web.js CHANGED
@@ -789,6 +789,7 @@ var $;
789
789
  result = Object.assign(result.then(put, put), {
790
790
  destructor: result['destructor'] ?? (() => { })
791
791
  });
792
+ Error.captureStackTrace(result);
792
793
  handled.add(result);
793
794
  }
794
795
  }
@@ -806,6 +807,7 @@ var $;
806
807
  }), {
807
808
  destructor: result['destructor'] ?? (() => { })
808
809
  });
810
+ Error.captureStackTrace(result);
809
811
  handled.add(result);
810
812
  }
811
813
  }
@@ -2062,10 +2064,10 @@ var $;
2062
2064
  "use strict";
2063
2065
  var $;
2064
2066
  (function ($) {
2065
- function $mol_style_prop(prefix, postfixes) {
2066
- const record = postfixes.reduce((record_obj, postfix) => {
2067
- record_obj[postfix] = $mol_style_func.vary(`--${prefix}_${postfix}`);
2068
- return record_obj;
2067
+ function $mol_style_prop(prefix, keys) {
2068
+ const record = keys.reduce((rec, key) => {
2069
+ rec[key] = $mol_style_func.vary(`--${prefix}_${key}`);
2070
+ return rec;
2069
2071
  }, {});
2070
2072
  return record;
2071
2073
  }