UNPKG

@churchapps/apphelper

Version:

Library of helper functions for React and NextJS ChurchApps

11 lines (10 loc) 267 B
export class CurrencyHelper { static formatCurrency(amount: number) { const formatter = new Intl.NumberFormat("en-US", { style: "currency", currency: "USD", minimumFractionDigits: 2 }); return formatter.format(amount); } }