summaryrefslogtreecommitdiff
path: root/date-fns/src/locale/he/_lib/formatRelative/index.js
blob: 3589cc36403e3a62d2095adf864526ffeb2f3ea5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
var formatRelativeLocale = {
  lastWeek: "eeee 'שעבר בשעה' p",
  yesterday: "'אתמול בשעה' p",
  today: "'היום בשעה' p",
  tomorrow: "'מחר בשעה' p",
  nextWeek: "eeee 'בשעה' p",
  other: 'P'
}

export default function formatRelative(token, _date, _baseDate, _options) {
  return formatRelativeLocale[token]
}