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