exports.getTimeOfDay = function getTimeOfDay(cb) {
  const date = new Date();
  const rounded = new Date(Math.round(date.getTime() / COEFF) * COEFF);
  const time = moment(rounded).format('H');
  let tod;