Created
April 14, 2021 15:28
-
-
Save arekbartnik/ce08c7614ae9d13dd85afb336ae6182a to your computer and use it in GitHub Desktop.
This file contains hidden or 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 formatPrice = (price: number | undefined) => { | |
if (!price) return "" | |
return ( | |
price | |
.toLocaleString("en-US", { minimumFractionDigits: 2 }) | |
.replace(/\D00(?=\D*$)/, "") | |
.replace(",", " ") | |
.replace(".", ",") + " zł" | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment