Skip to content

Commit

Permalink
fix: number format keys missing compared the Intl.Number object
Browse files Browse the repository at this point in the history
  • Loading branch information
jevillard committed Nov 18, 2020
1 parent 6ace404 commit 1fee874
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions src/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,23 @@
*/

export const numberFormatKeys = [
'style',
'compactDisplay',
'currency',
'currencyDisplay',
'currencySign',
'localeMatcher',
'notation',
'numberingSystem',
'signDisplay',
'style',
'unit',
'unitDisplay',
'useGrouping',
'minimumIntegerDigits',
'minimumFractionDigits',
'maximumFractionDigits',
'minimumSignificantDigits',
'maximumSignificantDigits',
'localeMatcher',
'formatMatcher',
'unit'
'maximumSignificantDigits'
]

/**
Expand Down

0 comments on commit 1fee874

Please sign in to comment.