export function round2(n: number) {
  return Math.round((n + Number.EPSILON) * 100) / 100;
}
export function percentOf(amount: number, pct: number) {
  return round2((amount * pct) / 100);
}
