UNPKG

my-utils-engine

Version:

Funções utilitárias para projetos em Angola (BI, telefone, currency, etc.) Comentários: os comentários no código estão em português. Nomes de funções em inglês.

16 lines (15 loc) 522 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.formatCurrency = formatCurrency; /** * Formata um número para moeda AOA (Kz) por defeito. * Usa Intl.NumberFormat com locale pt-AO. */ function formatCurrency(value, currency) { const numericValue = typeof value === "string" ? Number(value) : value; return new Intl.NumberFormat("pt-AO", { style: "currency", currency: currency || "AOA", minimumFractionDigits: 2, }).format(numericValue); }