function timeHelper(this: LocalsType, date?: moment.Moment | moment.MomentInput, format?: string) {
  const { config } = this;
  const moment = getMoment(date, getLanguage(this), config.timezone);
  return moment.format(format || config.time_format);
}