aoye 0.0.64 → 0.0.65
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/aoye.cjs.js +1 -1
- package/dist/aoye.cjs.js.map +1 -1
- package/dist/aoye.esm.js +1 -1
- package/dist/aoye.esm.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.umd.js
CHANGED
|
@@ -1605,7 +1605,7 @@
|
|
|
1605
1605
|
return ef;
|
|
1606
1606
|
}
|
|
1607
1607
|
let mounted = false;
|
|
1608
|
-
const deps = depOrOpt;
|
|
1608
|
+
const deps = depOrOpt.map(dep => typeof dep === 'function' ? new Computed(dep) : dep);
|
|
1609
1609
|
const immediate = deps.length === 0 ? true : opt.immediate ?? true;
|
|
1610
1610
|
const vs = Array.from({
|
|
1611
1611
|
length: deps.length
|