Flattens array a single level.
array
The array to flatten.
Returns the new flattened array.
_.flatten([1, [2, 3, [4]]]); // => [1, 2, 3, [4]]