semblance-dev/node_modules/date-fns/locale/he/_lib/formatRelative.mjs
2025-12-19 19:26:16 +00:00

11 lines
333 B
JavaScript
Executable file

const formatRelativeLocale = {
lastWeek: "eeee 'שעבר בשעה' p",
yesterday: "'אתמול בשעה' p",
today: "'היום בשעה' p",
tomorrow: "'מחר בשעה' p",
nextWeek: "eeee 'בשעה' p",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];