number suffix

This commit is contained in:
Benjamin Wilson 2025-02-01 15:33:42 -05:00
parent e34fcfafa4
commit 0794f97a50

@ -8,7 +8,7 @@ export class NumberSuffixPipe implements PipeTransform {
transform(value: number): string {
const suffixes = ['', 'k', 'M', 'G', 'T', 'P', 'E'];
const suffixes = ['', 'k', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y', 'R', 'Q'];
if (value == null || value < 0) {
return '0';