You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/website/source/docs/configuration/from-1.5/functions/collection/compact.html.md

425 B

layout page_title sidebar_current description
docs compact - Functions - Configuration Language configuration-functions-collection-compact The compact function removes empty string elements from a list.

compact Function

compact takes a list of strings and returns a new list with any empty string elements removed.

Examples

> compact(["a", "", "b", "c"])
[
  "a",
  "b",
  "c",
]