source: src/utils/flatten-array.ts@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 418 bytes
Line 
1// ----------------------------------------------------------------------
2
3export function flattenArray<T>(list: T[], key = 'children'): T[] {
4 let children: T[] = [];
5
6 const flatten = list?.map((item: any) => {
7 if (item[key] && item[key].length) {
8 children = [...children, ...item[key]];
9 }
10 return item;
11 });
12
13 return flatten?.concat(children.length ? flattenArray(children, key) : children);
14}
Note: See TracBrowser for help on using the repository browser.