You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We propose a `Decimal.Amount` object to store a Decimal value together with precision information. This is especially useful in formatting Decimal values, especially in internationalization and localization contexts.
92
92
93
93
```js
94
-
let a =Decimal.Amount.from("1.90").with({ fractionDigit:4 });
94
+
let a =Decimal.Amount.from("1.90").with({ fractionDigits:4 });
0 commit comments