@mmstack/primitives 22.9.1 → 22.9.2
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.
|
@@ -4723,6 +4723,9 @@ function toStore(source, { injector, vivify = false, noUnionLeaves = false, ...r
|
|
|
4723
4723
|
[STORE_SHARED_GLOBALS]: STORE_OPTIONS[STORE_SHARED_GLOBALS],
|
|
4724
4724
|
}));
|
|
4725
4725
|
};
|
|
4726
|
+
if ((typeof prop === 'symbol' && prop !== Symbol.iterator) ||
|
|
4727
|
+
(typeof prop === 'string' && SIGNAL_FN_PROP.has(prop)))
|
|
4728
|
+
return target[prop];
|
|
4726
4729
|
const k = untracked(kind);
|
|
4727
4730
|
if (prop === 'extend' && k !== 'array')
|
|
4728
4731
|
return (seed) => scopedStore(s, seed, isMutableSource
|
|
@@ -4740,8 +4743,6 @@ function toStore(source, { injector, vivify = false, noUnionLeaves = false, ...r
|
|
|
4740
4743
|
yield receiver[i];
|
|
4741
4744
|
};
|
|
4742
4745
|
}
|
|
4743
|
-
if (typeof prop === 'symbol' || SIGNAL_FN_PROP.has(prop))
|
|
4744
|
-
return target[prop];
|
|
4745
4746
|
if (k === 'array' && !isIndexProp(prop))
|
|
4746
4747
|
return Reflect.get(target, prop, receiver);
|
|
4747
4748
|
return getCachedChild(target, prop, () => buildChildNode(target, k === 'array' ? +prop : prop, isMutableSource, STORE_OPTIONS), STORE_OPTIONS[STORE_SHARED_GLOBALS].cache, STORE_OPTIONS[STORE_SHARED_GLOBALS].registry);
|