Skip to content

Latest commit

 

History

History
41 lines (38 loc) · 658 Bytes

File metadata and controls

41 lines (38 loc) · 658 Bytes

Custom Number Helpers

These helpers allow you to manipulate numbers.


Helpers.Number.FormatPrice

Summary Format number as price
Returns Formatted price
Remarks
Parameters
number Number to format

Example

Context

{
    "a": 1,
    "b": 10.59,
    "c": 1000.123
}

Usage

<strong>result:</strong>
{{Helpers.Number.FormatPrice a}}
{{Helpers.Number.FormatPrice b}}
{{Helpers.Number.FormatPrice c}}
{{Helpers.Number.FormatPrice 0.25}}

Returns

<strong>result:</strong>
1.00
10.59
1,000.12
0.25