2020-03-18 18:46:47 -04:00
|
|
|
---
|
|
|
|
page_title: compact - Functions - Configuration Language
|
2020-04-02 19:39:47 -04:00
|
|
|
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
|
|
|
|
|
2020-05-29 17:12:05 -04:00
|
|
|
```shell-session
|
2020-03-18 18:46:47 -04:00
|
|
|
> compact(["a", "", "b", "c"])
|
|
|
|
[
|
|
|
|
"a",
|
|
|
|
"b",
|
|
|
|
"c",
|
|
|
|
]
|
|
|
|
```
|