@mmstack/primitives 20.14.1 → 20.14.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.
|
@@ -4711,6 +4711,9 @@ function toStore(source, { injector, vivify = false, noUnionLeaves = false, ...r
|
|
|
4711
4711
|
[STORE_SHARED_GLOBALS]: STORE_OPTIONS[STORE_SHARED_GLOBALS],
|
|
4712
4712
|
}));
|
|
4713
4713
|
};
|
|
4714
|
+
if ((typeof prop === 'symbol' && prop !== Symbol.iterator) ||
|
|
4715
|
+
(typeof prop === 'string' && SIGNAL_FN_PROP.has(prop)))
|
|
4716
|
+
return target[prop];
|
|
4714
4717
|
const k = untracked(kind);
|
|
4715
4718
|
if (prop === 'extend' && k !== 'array')
|
|
4716
4719
|
return (seed) => scopedStore(s, seed, isMutableSource
|
|
@@ -4728,8 +4731,6 @@ function toStore(source, { injector, vivify = false, noUnionLeaves = false, ...r
|
|
|
4728
4731
|
yield receiver[i];
|
|
4729
4732
|
};
|
|
4730
4733
|
}
|
|
4731
|
-
if (typeof prop === 'symbol' || SIGNAL_FN_PROP.has(prop))
|
|
4732
|
-
return target[prop];
|
|
4733
4734
|
if (k === 'array' && !isIndexProp(prop))
|
|
4734
4735
|
return Reflect.get(target, prop, receiver);
|
|
4735
4736
|
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);
|