Files
30-seconds-of-code/test/toCurrency/toCurrency.js
2018-01-31 20:16:39 +00:00

3 lines
171 B
JavaScript

const toCurrency = (n, curr, LanguageFormat = undefined) =>
Intl.NumberFormat(LanguageFormat, { style: 'currency', currency: curr }).format(n);
module.exports = toCurrency