Skip to content

Instantly share code, notes, and snippets.

@scsskid
Created November 16, 2020 18:23
Show Gist options
  • Save scsskid/968e465959ceb5563a21a7bd5da198a6 to your computer and use it in GitHub Desktop.
Save scsskid/968e465959ceb5563a21a7bd5da198a6 to your computer and use it in GitHub Desktop.
function NumberFormatter(locale, opts) {
var formatNumber,
defaults = {
style: 'currency',
currency: 'EUR'
};
opts = opts || {};
opts = Object.assign({}, defaults, opts);
formatNumber = new Intl.NumberFormat(locale, opts);
return formatNumber.format;
};
var formatter = new NumberFormatter('de-DE');
console.log(formatter(12.49));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment