Files
liquid/filters/at_least.md
2017-12-14 10:10:19 -05:00

400 B

title, description
title description
at_least Liquid filter that limits a number to a minimum value

Limits a number to a minimum value.

Input

{% raw %} ```liquid {{ 4 | at_least: 5 }} ``` {% endraw %}

Output

``` 5 ```

Input

{% raw %} ```liquid {{ 4 | at_least: 3 }} ``` {% endraw %}

Output

``` 4 ```