@euk-labs/beltz
Version:
   ;
exports.formatToCurrency = void 0;
function formatToCurrency(value = 0, currency = 'BRL') {
return new Intl.NumberFormat('en-US', {
style: 'currency',
currency,
}).format(value);
}
exports.formatToCurrency = formatToCurrency;
//# sourceMappingURL=number.js.map