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