Files
30-seconds-of-code/test/toCurrency/toCurrency.js
2018-08-02 13:49:33 +03:00

4 lines
175 B
JavaScript

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