12 lines
329 B
JavaScript
12 lines
329 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];
|