Skip to content

Instantly share code, notes, and snippets.

@kastigar
Created November 22, 2017 10:36
Show Gist options
  • Save kastigar/129f86c8ffe0f45f4ec9060f596b2c67 to your computer and use it in GitHub Desktop.
Save kastigar/129f86c8ffe0f45f4ec9060f596b2c67 to your computer and use it in GitHub Desktop.
formatPrice.js
const currencySigns = {
'USD': '$',
'EUR': '€',
};
function formatPrice({ price, currency_code}) {
const sign = currencySigns[currency_code];
return sign ? `${sign}${price}` : `${price} ${currency_code}`;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment