FORMAT.CURRENCY
FORMAT.CURRENCY(value, symbol = "$")
Formats a number as currency, with proper support for decimals.
{{ FORMAT.CURRENCY(1) }} // Produces $1.00
{{ FORMAT.CURRENCY(0.5) }} // Produces $0.50
{{ FORMAT.CURRENCY(10000) }} // Produces $10,000.00
{{ FORMAT.CURRENCY(1, "€") }} // Produces €1.00