We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbb6688 commit 9c0f9dfCopy full SHA for 9c0f9df
Decimal.ts
@@ -193,10 +193,10 @@ export default class Decimal {
193
194
/**
195
* Returns the multiplicative inverse of the current Decimal instance.
196
- *
+ *
197
* Throws if the resulting value cannot be represented with a fixed number of decimals (like 1/3).
198
* If you need to invert such a value, use the optional `significantDigits` parameter to specify the number of significant digits to use in the result.
199
200
* ```ts
201
* Decimal.from(3).inv(); // Throws
202
* Decimal.from(3).inv(2); // Returns 0.33
0 commit comments