UNPKG

@churchapps/apphelper

Version:

Library of helper functions for React and NextJS ChurchApps

11 lines 325 B
export class CurrencyHelper { static formatCurrency(amount) { const formatter = new Intl.NumberFormat("en-US", { style: "currency", currency: "USD", minimumFractionDigits: 2 }); return formatter.format(amount); } } //# sourceMappingURL=CurrencyHelper.js.map