Created
July 3, 2022 12:39
-
-
Save thegeorgenikhil/d24905bdade3ea410be8b939ca4460a2 to your computer and use it in GitHub Desktop.
Currency Formatter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const CURRENCY_FORMATTER = new Intl.NumberFormat(undefined, { | |
currency: "INR", | |
style: "currency", | |
}); | |
export function formatCurrency(number: number) { | |
return CURRENCY_FORMATTER.format(number); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment