@mmstack/primitives 21.9.1 → 21.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.
|
@@ -4684,6 +4684,9 @@ function toStore(source, { injector, vivify = false, noUnionLeaves = false, ...r
|
|
|
4684
4684
|
[STORE_SHARED_GLOBALS]: STORE_OPTIONS[STORE_SHARED_GLOBALS],
|
|
4685
4685
|
}));
|
|
4686
4686
|
};
|
|
4687
|
+
if ((typeof prop === 'symbol' && prop !== Symbol.iterator) ||
|
|
4688
|
+
(typeof prop === 'string' && SIGNAL_FN_PROP.has(prop)))
|
|
4689
|
+
return target[prop];
|
|
4687
4690
|
const k = untracked(kind);
|
|
4688
4691
|
if (prop === 'extend' && k !== 'array')
|
|
4689
4692
|
return (seed) => scopedStore(s, seed, isMutableSource
|
|
@@ -4701,8 +4704,6 @@ function toStore(source, { injector, vivify = false, noUnionLeaves = false, ...r
|
|
|
4701
4704
|
yield receiver[i];
|
|
4702
4705
|
};
|
|
4703
4706
|
}
|
|
4704
|
-
if (typeof prop === 'symbol' || SIGNAL_FN_PROP.has(prop))
|
|
4705
|
-
return target[prop];
|
|
4706
4707
|
if (k === 'array' && !isIndexProp(prop))
|
|
4707
4708
|
return Reflect.get(target, prop, receiver);
|
|
4708
4709
|
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);
|