export function percentage(value, max) { return (100 * value / max).toFixed(1) + " %"; }