not_empty?

Opposite of empty? filter.

Input:

{{ "" | not_empty? }} {{ [] | not_empty? }} {{ "nope" | not_empty? }}

Output:

false false true