class Liquid::Filters::Abs
- Liquid::Filters::Abs
- Reference
- Object
Overview
Filter abs
Returns the absolute value of a number.
{{ -17 | abs }}
=> 17
{{ 4 | abs }}
=> 4
abs will also work on a string if the string only contains a number.
{{ "-19.86" | abs }}
=> 19.86