We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66a21ee commit ac07113Copy full SHA for ac07113
decimal.js
@@ -4862,7 +4862,7 @@
4862
4863
// Create and configure initial Decimal constructor.
4864
Decimal = clone(DEFAULTS);
4865
-
+ Decimal.prototype.constructor = Decimal;
4866
Decimal['default'] = Decimal.Decimal = Decimal;
4867
4868
// Create the internal constants from their string values.
decimal.mjs
@@ -4861,6 +4861,7 @@ P[Symbol.toStringTag] = 'Decimal';
4861
export var Decimal = clone(DEFAULTS);
+Decimal.prototype.constructor = Decimal;
LN10 = new Decimal(LN10);
0 commit comments