inlt is not part of stringifyValue

This commit is contained in:
Sebastian 2022-01-25 15:12:28 -03:00
parent 0ccd5b955b
commit 8b07411c58
No known key found for this signature in database
GPG Key ID: BE4FF68352439FC1

View File

@ -414,7 +414,7 @@ export class Amounts {
return x1.currency.toUpperCase() === x2.currency.toUpperCase(); return x1.currency.toUpperCase() === x2.currency.toUpperCase();
} }
static stringifyValue(a: AmountJson, minFractional: number = 0): string { static stringifyValue(a: AmountJson, minFractional = 0): string {
const av = a.value + Math.floor(a.fraction / amountFractionalBase); const av = a.value + Math.floor(a.fraction / amountFractionalBase);
const af = a.fraction % amountFractionalBase; const af = a.fraction % amountFractionalBase;
let s = av.toString(); let s = av.toString();
@ -431,9 +431,6 @@ export class Amounts {
} }
} }
const currencyFormatter = new Intl.NumberFormat("en-US", { return s;
minimumFractionDigits: minFractional,
});
return currencyFormatter.format(s as any);
} }
} }