Files
30-seconds-of-code/test/toCurrency/toCurrency.js
2018-02-04 17:38:39 +02:00

3 lines
172 B
JavaScript

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