Fix import issues

pull/73/head
Michael Mclaughlin 7 years ago
parent 3cbfd6da08
commit 9ae7ca7088

@ -4775,6 +4775,8 @@ function trunc(x) {
// Create and configure initial Decimal constructor.
Decimal = clone(defaults);
Decimal['default'] = Decimal.Decimal = Decimal;
// Create the internal constants from their string values.
LN10 = new Decimal(ln10);
PI = new Decimal(pi);

@ -4777,6 +4777,8 @@
// Create and configure initial Decimal constructor.
Decimal = clone(Decimal);
Decimal['default'] = Decimal.Decimal = Decimal;
// Create the internal constants from their string values.
LN10 = new Decimal(LN10);
PI = new Decimal(PI);
@ -4793,7 +4795,7 @@
// Node and other environments that support module.exports.
} else if (typeof module != 'undefined' && module.exports) {
module.exports = Decimal['default'] = Decimal.Decimal = Decimal;
module.exports = Decimal;
// Browser.
} else {

Loading…
Cancel
Save