front-hub/src/utils/currencyFormatter.ts

9 lines
164 B
TypeScript
Raw Normal View History

2023-06-16 20:09:56 +00:00
export const currencyFormatter = new Intl.NumberFormat(
2023-11-05 23:33:40 +00:00
"ru",
{
currency: "RUB",
style: "currency",
compactDisplay: "short",
minimumFractionDigits: 0
}
)