8 lines
209 B
TypeScript
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)
|
|
}
|