date-fns
Version:
Modern JavaScript date utility library
12 lines (10 loc) • 416 B
JavaScript
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];