5 lines
133 B
TypeScript
5 lines
133 B
TypeScript
/** Format cents as EUR string. */
|
|
export function formatPrice(cents: number): string {
|
|
return `€${(cents / 100).toFixed(2)}`;
|
|
}
|