Files
30-seconds-of-code/test/toCurrency/toCurrency.js
2018-01-27 10:17:50 -05:00

2 lines
175 B
JavaScript

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