hh-ui-components
Version:
11 lines • 410 B
JavaScript
export var formatPrice = function (price) {
try {
var priceFormatTemplate = "%@ €";
var selPrice = price ? (Math.round(price * 100) / 100).toFixed(2) : 0;
return priceFormatTemplate === null || priceFormatTemplate === void 0 ? void 0 : priceFormatTemplate.replace("%@", selPrice.toString());
}
catch (e) {
return;
}
};
//# sourceMappingURL=ProductHelper.js.map