Files
liquid/_filters/abs.md
2021-04-28 13:43:02 -04:00

558 B

title, description, redirect_from
title description redirect_from
abs Liquid filter that returns the absolute value of a number. /filters/

Returns the absolute value of a number.

Input

```liquid {%- raw -%} {{ -17 | abs }} {{ 4 | abs }} {% endraw %} ```

Output

```text {{ -17 | abs }} {{ 4 | abs }} ```

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

Input

```liquid {%- raw -%} {{ "-19.86" | abs }} {% endraw %} ```

Output

```text {{ "-19.86" | abs }} ```