8 lines
195 B
JavaScript
8 lines
195 B
JavaScript
export function amountText(amounts) {
|
|
return (amounts || []).map((amount) => amount.display).join(", ");
|
|
}
|
|
|
|
export function depthClass(depth) {
|
|
return `--depth-${Math.min(depth || 0, 3)}`;
|
|
}
|