mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
16 lines
395 B
JavaScript
16 lines
395 B
JavaScript
export function flatArray(data = [], childrenName = 'children') {
|
|
const result = [];
|
|
const loop = (array) => {
|
|
array.forEach(item => {
|
|
const newItem = { ...item };
|
|
delete newItem[childrenName];
|
|
result.push(newItem);
|
|
if (item[childrenName] && item[childrenName].length > 0) {
|
|
loop(item[childrenName]);
|
|
}
|
|
});
|
|
};
|
|
loop(data);
|
|
return result;
|
|
}
|