volleyball-dev-frontend/node_modules/date-fns/locale/is/_lib/formatRelative.mjs
2025-06-02 16:42:16 +00:00

12 lines
309 B
JavaScript

const formatRelativeLocale = {
lastWeek: "'síðasta' dddd 'kl.' p",
yesterday: "'í gær kl.' p",
today: "'í dag kl.' p",
tomorrow: "'á morgun kl.' p",
nextWeek: "dddd 'kl.' p",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];