abs

Returns the absolute value of a number.

Input

{{ -17 | abs }}
{{ 4 | abs }}

Output

17
4

abs will also work on a string that only contains a number.

Input

{{ "-19.86" | abs }}

Output

19.86