mirror of
https://github.com/kemko/liquid.git
synced 2026-01-06 18:25:41 +03:00
400 B
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 ```