UNPKG

@ledgerhq/live-common

Version:
13 lines 449 B
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