Files
mercadodevida/project/apps/pos/src/lib/money.ts
2026-08-22 13:39:11 +02:00

5 lines
133 B
TypeScript

/** Format cents as EUR string. */
export function formatPrice(cents: number): string {
return `${(cents / 100).toFixed(2)}`;
}