Skip to main content

at_least

number | at_least
returns number

Limits a number to a minimum value.

{{ 4 | at_least: 5 }}
{{ 4 | at_least: 3 }}

Output

5
4
Was this page helpful?