@makeswift/runtime 0.0.0-af7286d → 0.0.0-e0c0445

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.
@@ -687,9 +687,9 @@ function nextHash() {
687
687
  var usingWeakMap = typeof WeakMap === "function";
688
688
  var weakMap;
689
689
  if (usingWeakMap) {
690
- weakMap = /* @__PURE__ */ new WeakMap();
690
+ weakMap = new WeakMap();
691
691
  }
692
- var symbolMap = /* @__PURE__ */ Object.create(null);
692
+ var symbolMap = Object.create(null);
693
693
  var _objHashUID = 0;
694
694
  var UID_HASH_KEY = "__immutablehash__";
695
695
  if (typeof Symbol === "function") {
@@ -4167,7 +4167,7 @@ function measureElements() {
4167
4167
  const boxModel = measure(measurable);
4168
4168
  return boxModel ? [elementKey, boxModel] : null;
4169
4169
  }).filter((entry) => entry != null));
4170
- const changedBoxModels = /* @__PURE__ */ new Map();
4170
+ const changedBoxModels = new Map();
4171
4171
  currentBoxModels.forEach((_boxModel, elementKey) => {
4172
4172
  if (!measuredBoxModels.has(elementKey))
4173
4173
  changedBoxModels.set(elementKey, null);