
const isWeekend = (t = new Date()) => {
  return t.getDay() % 6 === 0;
};
