22 lines
376 B
Plaintext
Raw Permalink Normal View History

2020-03-18 18:46:47 -04:00
---
page_title: compact - Functions - Configuration Language
sidebar_title: compact
2020-03-18 18:46:47 -04:00
description: 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
```shell-session
2020-03-18 18:46:47 -04:00
> compact(["a", "", "b", "c"])
[
"a",
"b",
"c",
]
```