mirror of
https://github.com/jcreek/SvelteKitSaasBoilerplate.git
synced 2026-07-14 03:23:49 +00:00
6 lines
186 B
TypeScript
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);
|
|
} |