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.esm.js CHANGED
@@ -2768,7 +2768,10 @@ const effect = (callback, depOrOpt, opt) => {
2768
2768
  newDeps.push(dep);
2769
2769
  }
2770
2770
  }
2771
- return effect$1(callback, newDeps, option);
2771
+ if (isArray) {
2772
+ return effect$1(callback, newDeps, option);
2773
+ }
2774
+ return effect$1(callback, option);
2772
2775
  };
2773
2776
 
2774
2777
  export { Compiler, FakeType, NodeType, ParseSyntaxError, Tokenizer, bobe, context, customRender, effect };