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.
package/dist/bobe.cjs.js CHANGED
@@ -2769,7 +2769,10 @@ const effect = (callback, depOrOpt, opt) => {
2769
2769
  newDeps.push(dep);
2770
2770
  }
2771
2771
  }
2772
- return aoye.effect(callback, newDeps, option);
2772
+ if (isArray) {
2773
+ return aoye.effect(callback, newDeps, option);
2774
+ }
2775
+ return aoye.effect(callback, option);
2773
2776
  };
2774
2777
 
2775
2778
  Object.defineProperty(exports, "Store", {