Files
liquid/filters/uniq.md
2016-04-02 18:46:32 -04:00

391 B

title
title
uniq

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: ", " }}