timepiece/node_modules/date-fns/locale/is/_lib/formatRelative.mjs

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];