source
function compact(array) { let resIndex = 0 const result = [] if (array == null) { return result } for (const value of array) { if (valu