Releases: thiagodp/intl-number-helper
Releases · thiagodp/intl-number-helper
v1.2.3
v1.2.0
v1.1.3
v1.0.1
v1.0.0
Changes:
- New pattern for ranges (easier to read). BREAKING CHANGE.
- Before:
1:2
means1
as minimum and2
as maximum.- maximum alone is possible, e.g.,
:2
.
- Now:
1-2
means1
as minimum and2
as maximum.- minimum must be defined to define the maximum. e.g.,
1-2
.
- Grouping disabling character (
#
) is now separated from the fraction character (.
) and they are now written independently. BREAKING CHANGE.
- Before:
- When used along with ranges, the grouping character replaced the fraction separator. Example:
7#1
- When used along with ranges, the grouping character replaced the fraction separator. Example:
- Now:
- Grouping is not mixed with ranges and should be declared before them. Example:
#7.1
- Grouping is not mixed with ranges and should be declared before them. Example: