UNPKG

hh-ui-components

Version:
11 lines (9 loc) 284 B
export const formatPrice = (price: number): any => { try { const priceFormatTemplate = "%@ €"; const selPrice = price ? (Math.round(price * 100) / 100).toFixed(2) : 0; return priceFormatTemplate?.replace("%@", selPrice.toString()); } catch (e) { return; } };