bobe 0.0.64 → 0.0.66

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.
@@ -2796,7 +2796,10 @@ const effect = (callback, depOrOpt, opt) => {
2796
2796
  newDeps.push(dep);
2797
2797
  }
2798
2798
  }
2799
- return aoye.effect(callback, newDeps, option);
2799
+ if (isArray) {
2800
+ return aoye.effect(callback, newDeps, option);
2801
+ }
2802
+ return aoye.effect(callback, option);
2800
2803
  };
2801
2804
 
2802
2805
  Object.defineProperty(exports, "Store", {