12 lines
294 B
JavaScript
12 lines
294 B
JavaScript
|
const formatRelativeLocale = {
|
||
|
lastWeek: "eeee 'diwethaf am' p",
|
||
|
yesterday: "'ddoe am' p",
|
||
|
today: "'heddiw am' p",
|
||
|
tomorrow: "'yfory am' p",
|
||
|
nextWeek: "eeee 'am' p",
|
||
|
other: "P",
|
||
|
};
|
||
|
|
||
|
export const formatRelative = (token, _date, _baseDate, _options) =>
|
||
|
formatRelativeLocale[token];
|