Deep flatten Json

PHOTO EMBED

Sat Aug 27 2022 13:26:17 GMT+0000 (Coordinated Universal Time)

Saved by @Osamahaikal #lodash #javascript #flatten

const recurse = (rows) => _.map((rows), (row) => row.collapsed ? [row] : [row, recurse(row.children)]);

const flattenTree = tree => _.flattenDeep(recurse(tree));

content_copyCOPY