Files
SvelteKitSaasBoilerplate/src/lib/utils/currency.ts
T

6 lines
186 B
TypeScript

export function formatCurrency(amount: number, currency: string): string {
return new Intl.NumberFormat('en-GB', {
style: 'currency',
currency: currency,
}).format(amount);
}