front-hub/src/utils/currencyFormatter.ts

9 lines
198 B
TypeScript
Raw Normal View History

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