@novely/core 0.46.0-next.4 → 0.46.0
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/index.global.js +4 -4
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -715,10 +715,10 @@ var flatActions = (item) => {
|
|
|
715
715
|
});
|
|
716
716
|
};
|
|
717
717
|
var flatStory = (story) => {
|
|
718
|
-
const
|
|
719
|
-
|
|
720
|
-
}
|
|
721
|
-
return
|
|
718
|
+
for (const key in story) {
|
|
719
|
+
story[key] = flatActions(story[key]);
|
|
720
|
+
}
|
|
721
|
+
return story;
|
|
722
722
|
};
|
|
723
723
|
|
|
724
724
|
// src/browser.ts
|