The number to be formatted as currency.
An object with some or all of the properties of Intl.NumberFormatOptions.
console.log(currencyFormatter(1234567890.1997)); // ₹1,23,45,67,890.20
console.log(currencyFormatter(1234567890, {locales: "en-US", currency: "USD", maximumFractionDigits: 0})); // $1,234,567,890
Generated using TypeDoc
Converts a number into a formatted currency value.