I got around the issue by dynamically setting the precision of toFixed() depending on how many zeroes are present after the decimal point in the result. So if there are three zeroes after the decimal point, the precision would be two more than that.
Fixes #186
I got around the issue by dynamically setting the precision of
toFixed()
depending on how many zeroes are present after the decimal point in the result. So if there are three zeroes after the decimal point, the precision would be two more than that. Fixes #186