Appearance
compact(array)
Removes all nullable values from array.
array
compact([1, null, undefined]); // [1]
pipe([1, null, undefined], compact()); // [1]