I have the following array structure:
[[a], [b, c, [d, e]]]
That could have many levels of nesting (defined in execution time)
I would like to transform it in:
[a], [b,c], [d, e], ...
I have not found a way that works for 100% of the cases.
Any suggestion?
Thank you,
[a], [b,c], [d, e]- do you mean[ [a], [b,c], [d, e] ]