Files
liquid/_filters/uniq.md
2019-07-28 16:27:13 -04:00

462 B

title, description
title description
uniq Liquid filter that removes duplicate items from an array.

Removes any duplicate elements in an array.

Input

```liquid {% raw %} {% assign my_array = "ants, bugs, bees, bugs, ants" | split: ", " %}

{{ my_array | uniq | join: ", " }} {% endraw %}


<p class="code-label">Output</p>
```text
{% assign my_array = "ants, bugs, bees, bugs, ants" | split: ", " %}

{{ my_array | uniq | join: ", " }}