FORMAT.PERCENTAGE
FORMAT.PERCENTAGE(value)
Formats a decimal number as a percentage. The number 1 is considered to be 100%.
{{ FORMAT.PERCENTAGE(0.1) }} // Produces 10%
{{ FORMAT.PERCENTAGE(1) }} // Produces 100%
{{ FORMAT.PERCENTAGE(100) }} // Produces 10000%