import { secToHuman } from "./secToHuman";

export function tookToHuman(startedAt: number): string {
  return secToHuman(Math.round((performance.now() - startedAt) / 1000));
}
