date-fns
Version:
Modern JavaScript date utility library
11 lines • 427 B
JavaScript
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];
}