remove undefined values from an array
# list => [undef,"hello",undef,"world"] compact(list) # list => ["Hello","world"]
Catmandu::Fix