UNPKG

bootstrap-vue-next

Version:

BootstrapVueNext is an early and lovely component library for Vue 3 & Nuxt 3 based on Bootstrap 5 and Typescript.

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