Comparing version 6.0.0 to 6.0.1
/* | ||
* big.js v6.0.0 | ||
* big.js v6.0.1 | ||
* A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic. | ||
@@ -785,3 +785,3 @@ * Copyright (c) 2020 Michael Mclaughlin | ||
e = ((e + 1) / 2 | 0) - (e < 0 || e & 1); | ||
r = new Big((s == 1 / 0 ? '1e' : (s = s.toExponential()).slice(0, s.indexOf('e') + 1)) + e); | ||
r = new Big((s == 1 / 0 ? '5e' : (s = s.toExponential()).slice(0, s.indexOf('e') + 1)) + e); | ||
} else { | ||
@@ -788,0 +788,0 @@ r = new Big(s); |
@@ -0,1 +1,6 @@ | ||
#### 6.0.1 | ||
* 30/09/20 | ||
* Correct `sqrt` initial estimate. | ||
#### 6.0.0 | ||
@@ -2,0 +7,0 @@ |
{ | ||
"name": "big.js", | ||
"description": "A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic", | ||
"version": "6.0.0", | ||
"version": "6.0.1", | ||
"keywords": [ | ||
@@ -6,0 +6,0 @@ "arbitrary", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
61155