Add round filter

Filipe Saraiva
2015-04-24 23:39:58 +01:00
parent d017fb8550
commit 51a58a807f
+1
@@ -68,6 +68,7 @@ Hello {{ 'now' | date: "%Y %h" }}
* `plus` - addition *e.g.* `{{ '1' | plus:'1' }} #=> 2`, `{{ 1 | plus:1 }} #=> 2`
* `times` - multiplication *e.g* `{{ 5 | times:4 }} #=> 20`
* `divided_by` - integer division *e.g.* `{{ 10 | divided_by:3 }} #=> 3`
* `round` - rounds input to the nearest integer or specified number of decimals
* `split` - split a string on a matching pattern *e.g.* `{{ "a~b" | split:"~" }} #=> ['a','b']`
* `modulo` - remainder, *e.g.* `{{ 3 | modulo:2 }} #=> 1`