UNPKG

bootstrap-vue-next

Version:

Seamless integration of Vue 3, Bootstrap 5, and TypeScript for modern, type-safe UI development

14 lines (13 loc) 307 B
import { Fragment } from "vue"; function flattenFragments(nodes) { return nodes.map((node) => { if (node.type === Fragment) { return flattenFragments(node.children); } return node; }).flat(); } export { flattenFragments as f }; //# sourceMappingURL=flattenFragments-BoFLyuna.mjs.map