pub fn compact(list: Value) -> Result<Value, Error>
Remove empty/falsy values from list {{ [“a”, “”, null, “b”] | compact }} → [“a”, “b”]