@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
13 lines • 449 B
JavaScript
export const counterValueFormatter = ({ currency, value, shorten, locale, }) => {
if (!value) {
return "-";
}
return new Intl.NumberFormat(locale, {
style: currency ? "currency" : "decimal",
currency,
notation: shorten ? "compact" : "standard",
maximumFractionDigits: shorten ? 3 : 8,
}).format(value);
};
export default counterValueFormatter;
//# sourceMappingURL=countervalueFormatter.js.map