angular-three 1.9.3 → 1.9.4

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.
@@ -546,8 +546,10 @@ class NgtRxStore extends RxState {
546
546
  Object.defineProperty(this, 'get', {
547
547
  get: () => {
548
548
  return (...args) => {
549
- const state = originalGet(...args);
550
- return state || {};
549
+ if (args.length === 0) {
550
+ return originalGet() ?? {};
551
+ }
552
+ return originalGet(...args);
551
553
  };
552
554
  },
553
555
  });