This feature is experimental. Please share your experiences so we know what to keep or change.
Flattens the given array
a single depth level.
```js let nested = [1, [2, 3], [4]] up.util.flatten(nested) // => [1, 2, 3, 4]
An array which might contain other arrays
The flattened array