Skip to content

Instantly share code, notes, and snippets.

@arekbartnik
Created April 14, 2021 15:28
Show Gist options
  • Save arekbartnik/ce08c7614ae9d13dd85afb336ae6182a to your computer and use it in GitHub Desktop.
Save arekbartnik/ce08c7614ae9d13dd85afb336ae6182a to your computer and use it in GitHub Desktop.
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