/
rykit
/
lifequest-app
Обзор
Документация
Войти
/
rykit
/
lifequest-app
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/shared/lib/format.ts
21 строка
500 B
Rykitik
chore: initial commit
25 апр 2026, 14:11
25 апр 2026, 14:11
577d0a6
Код
Авторство
О чём код?
const currencyFormatter = new Intl.NumberFormat('ru-RU', { style: 'currency', currency: 'RUB', maximumFractionDigits: 0, }) export function formatCurrency(value: number) { return currencyFormatter.format(value) } export function formatPercent(value: number) { return `${Math.round(value)}%` } export function formatCompact(value: number) { return new Intl.NumberFormat('ru-RU', { notation: 'compact', compactDisplay: 'short', maximumFractionDigits: 1, }).format(value) }