mol_tree2 1.0.649 → 1.0.650

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_tree2",
3
- "version": "1.0.649",
3
+ "version": "1.0.650",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",
package/web.test.js CHANGED
@@ -2427,6 +2427,7 @@ var $;
2427
2427
  result = Object.assign(result.then(put, put), {
2428
2428
  destructor: result['destructor'] ?? (() => { })
2429
2429
  });
2430
+ Error.captureStackTrace(result);
2430
2431
  handled.add(result);
2431
2432
  }
2432
2433
  }
@@ -2444,6 +2445,7 @@ var $;
2444
2445
  }), {
2445
2446
  destructor: result['destructor'] ?? (() => { })
2446
2447
  });
2448
+ Error.captureStackTrace(result);
2447
2449
  handled.add(result);
2448
2450
  }
2449
2451
  }
@@ -4607,10 +4609,10 @@ var $;
4607
4609
  "use strict";
4608
4610
  var $;
4609
4611
  (function ($) {
4610
- function $mol_style_prop(prefix, postfixes) {
4611
- const record = postfixes.reduce((record_obj, postfix) => {
4612
- record_obj[postfix] = $mol_style_func.vary(`--${prefix}_${postfix}`);
4613
- return record_obj;
4612
+ function $mol_style_prop(prefix, keys) {
4613
+ const record = keys.reduce((rec, key) => {
4614
+ rec[key] = $mol_style_func.vary(`--${prefix}_${key}`);
4615
+ return rec;
4614
4616
  }, {});
4615
4617
  return record;
4616
4618
  }