@connectedxm/admin 3.3.3 → 3.3.4
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.cjs +0 -2
- package/dist/index.js +0 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -21708,8 +21708,6 @@ var TransformPrice = (value, currency) => {
|
|
|
21708
21708
|
maximumFractionDigits: 2
|
|
21709
21709
|
});
|
|
21710
21710
|
if (value === 0) return "--.--";
|
|
21711
|
-
if (value < 0)
|
|
21712
|
-
return formatter.format(-value / 100).replace(currency, `-${currency}`);
|
|
21713
21711
|
return formatter.format(value / 100);
|
|
21714
21712
|
};
|
|
21715
21713
|
|
package/dist/index.js
CHANGED
|
@@ -18586,8 +18586,6 @@ var TransformPrice = (value, currency) => {
|
|
|
18586
18586
|
maximumFractionDigits: 2
|
|
18587
18587
|
});
|
|
18588
18588
|
if (value === 0) return "--.--";
|
|
18589
|
-
if (value < 0)
|
|
18590
|
-
return formatter.format(-value / 100).replace(currency, `-${currency}`);
|
|
18591
18589
|
return formatter.format(value / 100);
|
|
18592
18590
|
};
|
|
18593
18591
|
|