Files
next-coins/app/utils/format.ts
2026-03-04 02:35:48 +01:00

5 lines
131 B
TypeScript

export function formatPercentage(pct: number) {
const prefix = pct > 0 ? "+" : "";
return `${prefix}${pct.toFixed(2)}%`;
}