maxkb/ui/src/utils/array.ts
wangdan-fit2cloud 11fa3c4814 feat: tool
2025-06-24 14:51:29 +08:00

8 lines
235 B
TypeScript

// 树形结构转平
export function TreeToFlatten(treeData: any[]) {
return treeData.reduce((acc, node) => {
const { children, ...rest } = node
return [...acc, rest, ...(children ? TreeToFlatten(children) : [])]
}, [])
}