@mll-lab/js-utils 2.17.0 → 2.17.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.common.js +1 -1
- package/dist/index.common.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -15257,7 +15257,7 @@ function formatGermanNumber(value, _a = {}) {
|
|
|
15257
15257
|
if (Number.isNaN(parsed)) {
|
|
15258
15258
|
return defaultValue !== null && defaultValue !== void 0 ? defaultValue : '';
|
|
15259
15259
|
}
|
|
15260
|
-
return parsed.toLocaleString('de-DE', Object.assign(
|
|
15260
|
+
return parsed.toLocaleString('de-DE', Object.assign({ maximumFractionDigits: 6 }, localeOptions));
|
|
15261
15261
|
}
|
|
15262
15262
|
/**
|
|
15263
15263
|
* Parse an input into a number on a best effort basis.
|