cleek 2.3.8 → 2.3.9
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/cleek.es.js +1 -1
- package/dist/cleek.umd.js +5 -5
- package/package.json +1 -1
package/dist/cleek.es.js
CHANGED
|
@@ -16822,7 +16822,7 @@ function getCleekOptions(userOptions) {
|
|
|
16822
16822
|
console.log("category", category);
|
|
16823
16823
|
console.log("userOptions[category]", userOptions[category]);
|
|
16824
16824
|
if (userOptions[category]) {
|
|
16825
|
-
for (const key in category) {
|
|
16825
|
+
for (const key in userOptions[category]) {
|
|
16826
16826
|
console.log("key", key);
|
|
16827
16827
|
const value = userOptions[category][key];
|
|
16828
16828
|
console.log("value", value);
|