From ba99e657d2926319f002e467d37c2452b0b1f17a Mon Sep 17 00:00:00 2001 From: Michael Mclaughlin Date: Sat, 10 Mar 2018 19:46:08 +0000 Subject: [PATCH] #82 #91 const to var --- decimal.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/decimal.mjs b/decimal.mjs index 98ac347..09b8ded 100644 --- a/decimal.mjs +++ b/decimal.mjs @@ -4786,7 +4786,7 @@ function trunc(x) { // Create and configure initial Decimal constructor. -export const Decimal = clone(DEFAULTS); +export var Decimal = clone(DEFAULTS); // Create the internal constants from their string values. LN10 = new Decimal(LN10);