Files
shop-server/client/src/shared/lib/format-price.ts
T
@kirill.komarov 55480d4aa5 init project
2026-04-28 11:02:08 +05:00

8 lines
209 B
TypeScript

export function formatPriceRub(priceCents: number): string {
return new Intl.NumberFormat('ru-RU', {
style: 'currency',
currency: 'RUB',
maximumFractionDigits: 0,
}).format(priceCents / 100)
}